October 23, 2012 at 3:51am
1 note
Gradle: How to install Gradle 1.2 on Ubuntu
Currently there is no way to install Gradle 1.2 from official Ubuntu repos. So we’ll just use a custom PPA to solve this issue. Type these lines in your terminal:
sudo apt-add-repository ppa:cwchien/gradle
sudo apt-get update
sudo apt-get install gradle
Check it:
gradle --version
------------------------------------------------------------
Gradle 1.2
------------------------------------------------------------
Gradle build time: 12 Сентябрь 2012 г. 10:46:02 UTC
Groovy: 1.8.6
Ant: Apache Ant(TM) version 1.8.4 compiled on May 22 2012
Ivy: 2.2.0
JVM: 1.7.0_07 (Oracle Corporation 23.2-b09)
OS: Linux 3.5.0-17-generic i386
There are only 3 kinds of people in this world. Those who can do maths and those who can’t.
— Somebody
January 11, 2012 at 11:31pm
5 notes
A computer program will always do what you tell it to do, but rarely what you want to do.
— One of Murphy’s Laws of Computing
December 18, 2011 at 12:41am
3 notes
Maven: How to Install Maven 3 on Ubuntu 11.10
If you want to use some of new cool Maven 3 features on your Ubuntu then there is a simple instruction explaining how you can achieve that.
First we need to add a custom PPA repository to the list of authorized system software sources:
$ sudo add-apt-repository ppa:natecarlson/maven3
And press Enter key one more time for confirmation of adding PPA. Then all we need is run this command:
$ sudo apt-get update && sudo apt-get install maven3
That’s all. Check it:
$ mvn3 --version
Apache Maven 3.0.3 (r1075438; 2011-02-28 22:31:09+0500)
Maven home: /usr/share/maven3
Java version: 1.7.0, vendor: Oracle Corporation
Java home: /usr/lib/jvm/jdk1.7.0/jre
Default locale: en_US, platform encoding: UTF-8
OS name: "linux", version: "3.0.0-14-generic-pae", arch: "i386", family: "unix"