Skip to content

Commit 81f1cf5

Browse files
committed
install thirdpart lib
1 parent dd1b570 commit 81f1cf5

26 files changed

+17
-27
lines changed

auto-pilot/pom.xml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -114,18 +114,14 @@
114114
<version>2.8.4</version>
115115
</dependency>
116116
<dependency>
117-
<groupId>com.topcoder</groupId>
118-
<artifactId>core-api</artifactId>
117+
<groupId>com.topcoder.thirdpart</groupId>
118+
<artifactId>core.api</artifactId>
119119
<version>1.0-SNAPSHOT</version>
120-
<scope>system</scope>
121-
<systemPath>${basedir}/../libs/core.api.jar</systemPath>
122120
</dependency>
123121
<dependency>
124-
<groupId>com.topcoder</groupId>
125-
<artifactId>job-scheduler</artifactId>
122+
<groupId>com.topcoder.thirdpart</groupId>
123+
<artifactId>job_scheduler</artifactId>
126124
<version>1.0-SNAPSHOT</version>
127-
<scope>system</scope>
128-
<systemPath>${basedir}/../libs/job_scheduler.jar</systemPath>
129125
</dependency>
130126
<dependency>
131127
<groupId>junit</groupId>

contest-eligibility-persistence/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@
4141
</dependency>
4242
<dependency>
4343
<groupId>javax.persistence</groupId>
44-
<artifactId>persistence-api</artifactId>
45-
<version>1.0</version>
44+
<artifactId>javax.persistence-api</artifactId>
45+
<version>2.2</version>
4646
</dependency>
4747
<dependency>
4848
<groupId>junit</groupId>

install-third-dep.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/bash
2+
for i in $(ls libs/);
3+
do mvn install:install-file -Dfile=libs/$i -DgroupId=com.topcoder.thirdpart -DartifactId=$(basename $i .jar) -Dversion=1.0-SNAPSHOT -Dpackaging=jar;
4+
done

libs/axis_dok.jar

1.53 MB
Binary file not shown.

libs/catalog.jar

4.41 KB
Binary file not shown.

libs/checkstyle-all-4.2.jar

1.3 MB
Binary file not shown.

libs/ejb3-persistence.jar

51 KB
Binary file not shown.

libs/ifxjdbc.jar

728 KB
Binary file not shown.

libs/jboss-aop-jdk50-client.jar

104 KB
Binary file not shown.

libs/jboss-aspect-jdk50-client.jar

45.1 KB
Binary file not shown.

libs/jboss-ejb3-client.jar

293 KB
Binary file not shown.

libs/jboss-ejb3x.jar

19.9 KB
Binary file not shown.

libs/jboss-remoting.jar

594 KB
Binary file not shown.

libs/jgroups.jar

1.54 MB
Binary file not shown.

libs/jivebase.jar

11.2 MB
Binary file not shown.

libs/jiveforums.jar

1.53 MB
Binary file not shown.

libs/jodconverter-2.2.2.jar

31.3 KB
Binary file not shown.

libs/org.aspectj.matcher.jar

797 KB
Binary file not shown.

libs/shared.jar

820 KB
Binary file not shown.

libs/tc_id_generator.jar

14.9 KB
Binary file not shown.

libs/unoil-3.0.1.jar

1.3 MB
Binary file not shown.

libs/xerces.jar

1.73 MB
Binary file not shown.

online-review-ajax-support/pom.xml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,11 +140,9 @@
140140
<scope>provided</scope>
141141
</dependency>
142142
<dependency>
143-
<groupId>com.topcoder</groupId>
143+
<groupId>com.topcoder.thirdpart</groupId>
144144
<artifactId>tcwebcommon</artifactId>
145145
<version>1.0-SNAPSHOT</version>
146-
<scope>system</scope>
147-
<systemPath>${basedir}/../libs/tcwebcommon.jar</systemPath>
148146
</dependency>
149147
<dependency>
150148
<groupId>junit</groupId>

online-review-login/pom.xml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,9 @@
5454
<version>1.0-SNAPSHOT</version>
5555
</dependency>
5656
<dependency>
57-
<groupId>com.topcoder</groupId>
58-
<artifactId>security-manager</artifactId>
57+
<groupId>com.topcoder.thirdpart</groupId>
58+
<artifactId>Security</artifactId>
5959
<version>1.0-SNAPSHOT</version>
60-
<scope>system</scope>
61-
<systemPath>${basedir}/../libs/Security.jar</systemPath>
6260
</dependency>
6361
<dependency>
6462
<groupId>javax.ejb</groupId>
@@ -89,11 +87,9 @@
8987
<scope>test</scope>
9088
</dependency>
9189
<dependency>
92-
<groupId>com.topcoder</groupId>
93-
<artifactId>strutstest</artifactId>
90+
<groupId>com.topcoder.thirdpart</groupId>
91+
<artifactId>strutstest-2.1.3</artifactId>
9492
<version>1.0-SNAPSHOT</version>
95-
<scope>system</scope>
96-
<systemPath>${basedir}/../libs/strutstest-2.1.3.jar</systemPath>
9793
</dependency>
9894
</dependencies>
9995

online-review-phases/pom.xml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -221,11 +221,9 @@
221221
<scope>test</scope>
222222
</dependency>
223223
<dependency>
224-
<groupId>com.topcoder</groupId>
224+
<groupId>com.topcoder.thirdpart</groupId>
225225
<artifactId>User</artifactId>
226226
<version>1.0-SNAPSHOT</version>
227-
<scope>system</scope>
228-
<systemPath>${basedir}/../libs/User.jar</systemPath>
229227
</dependency>
230228
</dependencies>
231229

review-assignment/pom.xml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,9 @@
7070
<scope>provided</scope>
7171
</dependency>
7272
<dependency>
73-
<groupId>com.topcoder</groupId>
73+
<groupId>com.topcoder.thirdpart</groupId>
7474
<artifactId>forums</artifactId>
7575
<version>1.0-SNAPSHOT</version>
76-
<scope>system</scope>
77-
<systemPath>${basedir}/../libs/forums.jar</systemPath>
7876
</dependency>
7977
<dependency>
8078
<groupId>junit</groupId>

0 commit comments

Comments
 (0)