-
Notifications
You must be signed in to change notification settings - Fork 14
/
install-maven-artifacts.bat
42 lines (34 loc) · 1.69 KB
/
install-maven-artifacts.bat
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
REM You could install an artifact on a specific local repository by
REM setting the localRepositoryPath parameter when installing.
REM
REM mvn install:install-file -Dfile=path-to-your-artifact-jar ^
REM -DgroupId=your.groupId ^
REM -DartifactId=your-artifactId ^
REM -Dversion=version ^
REM -Dpackaging=jar ^
REM -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/lvgdist-2020.0.jar ^
-DgroupId=gov.nih.nlm.nls.lvg ^
-DartifactId=lvgdist ^
-Dversion=2020.0 ^
-Dpackaging=jar