-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathREADME.maven
20 lines (10 loc) · 1019 Bytes
/
README.maven
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
To be able to build with Maven you will first need to build the ceylon-common project.
And then you need to install the resulting JAR using the following command:
mvn install:install-file -Dfile=path/to/com.redhat.ceylon.common-1.1.0.jar -DgroupId=com.redhat.ceylon -DartifactId=ceylon-common -Dversion=1.1.0 -Dpackaging=jar
With the path to the JAR changed to point to the actual location on your local system.
The following might work on Linux and Mac if you did a full distribution build:
mvn install:install-file -Dfile=$HOME/.ceylon/repo/com/redhat/ceylon/common/1.1.0/com.redhat.ceylon.common-1.1.0.jar -DgroupId=com.redhat.ceylon -DartifactId=ceylon-common -Dversion=1.1.0 -Dpackaging=jar
And this might work on Windows:
mvn install:install-file -Dfile=%USERPROFILE%\.ceylon\repo\com\redhat\ceylon\common\1.1.0\com.redhat.ceylon.common-1.1.0.jar -DgroupId=com.redhat.ceylon -DartifactId=ceylon-common -Dversion=1.1.0 -Dpackaging=jar
After that you can do:
mvn clean install -DskipTests