-
Notifications
You must be signed in to change notification settings - Fork 1
/
install-maven-artifacts.sh
executable file
·48 lines (39 loc) · 1.9 KB
/
install-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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# 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=lib/biolemmatizer-core-1.2.jar \
-DgroupId=edu.ucdenver.ccp \
-DartifactId=biolemmatizer-core \
-Dversion=1.2 \
-Dpackaging=jar
mvn install:install-file -Dfile=lib/bioc-1.0.1.jar \
-DgroupId=bioc \
-DartifactId=bioc \
-Dversion=1.0.1 \
-Dpackaging=jar
mvn install:install-file -Dfile=lib/context-2012.jar \
-DgroupId=context \
-DartifactId=context \
-Dversion=2012 \
-Dpackaging=jar
mvn install:install-file -Dfile=lib/nlp-2.4.C.jar \
-DgroupId=gov.nih.nlm.nls \
-DartifactId=nlp \
-Dversion=2.4.C \
-Dpackaging=jar
mvn install:install-file -Dfile=lib/irutils-2.0-SNAPSHOT.jar \
-DgroupId=irutils \
-DartifactId=irutils \
-Dversion=2.0-SNAPSHOT \
-Dpackaging=jar
mvn install:install-file -Dfile=lib/clamp-1.0.jar \
-DgroupId=edu.uth \
-DartifactId=clamp \
-Dversion=1.0 \
-Dpackaging=jar