-
Notifications
You must be signed in to change notification settings - Fork 14
/
install-local-maven-artifacts.sh
executable file
·32 lines (24 loc) · 1.31 KB
/
install-local-maven-artifacts.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# You could install an artifact on a specific local repository by
# setting the localRepositoryPath parameter when installing.
#
# mvn install:install-file -Dfile=path-to-your-artifact-jar \
# -DgroupId=your.groupId \
# -DartifactId=your-artifactId \
# -Dversion=version \
# -Dpackaging=jar \
# -DlocalRepositoryPath=path-to-specific-local-repo (optional)
mvn install:install-file -Dfile=/usr/local/pub/nlp/BioC/BioC_Java_1.0.1/lib/biolemmatizer-core-1.1-jar-with-dependencies.jar \
-DgroupId=edu.ucdenver.ccp \
-DartifactId=biolemmatizer-core \
-Dversion=1.2 \
-Dpackaging=jar
mvn install:install-file -Dfile=/usr/local/pub/nlp/BioC/BioC_Java_1.0.1/bioc_1.0.1.jar \
-DgroupId=bioc \
-DartifactId=bioc \
-Dversion=1.0.1 \
-Dpackaging=jar
mvn install:install-file -Dfile=/usr/local/pub/nlp/JavaConText/Context.jar \
-DgroupId=context \
-DartifactId=context \
-Dversion=2012 \
-Dpackaging=jar