Skip to content
This repository was archived by the owner on Jan 23, 2025. It is now read-only.

Commit ab495f5

Browse files
committed
fix some issues
1 parent 3154163 commit ab495f5

File tree

11 files changed

+960
-14
lines changed

11 files changed

+960
-14
lines changed

Dockerfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ ENV JBOSS_HOME /data/jboss-4.2.3.GA
1212

1313
ADD ./start-jboss.sh /data/jboss-4.2.3.GA/bin/
1414
ADD ./TC.prod.ldap.keystore /data/jboss-4.2.3.GA/bin/
15+
ADD ./jboss_files/jboss-service.xml /data/jboss-4.2.3.GA/server/default/conf/
16+
ADD ./jboss_files/myserver.keystore /data/jboss-4.2.3.GA/server/default/conf/
17+
ADD ./jboss_files/server.xml /data/jboss-4.2.3.GA/server/default/deploy/jboss-web.deployer/
18+
ADD ./jboss_files/run.conf /data/jboss-4.2.3.GA/bin/
19+
ADD ./jboss_files/start.sh /data/jboss-4.2.3.GA/bin/
1520

1621
ADD ./ear-web/target/direct.ear /data/jboss-4.2.3.GA/server/default/deploy/direct.ear
1722
ADD ./ear-web/target/conf/ /data/jboss-4.2.3.GA/server/default/conf/

app/pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1251,6 +1251,12 @@
12511251
<version>1.0-SNAPSHOT</version>
12521252
<scope>provided</scope>
12531253
</dependency>
1254+
<dependency>
1255+
<groupId>com.topcoder</groupId>
1256+
<artifactId>direct-conf</artifactId>
1257+
<version>1.0-SNAPSHOT</version>
1258+
<!-- <scope>provided</scope>-->
1259+
</dependency>
12541260
</dependencies>
12551261
<build>
12561262
<plugins>
@@ -1302,6 +1308,7 @@
13021308
<directory>src/web/WEB-INF</directory>
13031309
<includes>
13041310
<include>tags/**/*.tag</include>
1311+
<include>includes/jq_1_11_1.jsp</include>
13051312
</includes>
13061313
<filtering>true</filtering>
13071314
<targetPath>WEB-INF</targetPath>

conf/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@
3737
<include>phase_templates/**/*.xml</include>
3838
<include>xml_phase_template.xsd</include>
3939
<include>AwsCredentials.properties</include>
40-
<include>AwsS3Credentials.properties</include>
41-
<include>contest_creation_sns_message.txt</include>
42-
<include>contest_update_sns_message.txt</include>
40+
<!-- <include>AwsS3Credentials.properties</include>-->
41+
<!-- <include>contest_creation_sns_message.txt</include>-->
42+
<!-- <include>contest_update_sns_message.txt</include>-->
4343
</includes>
4444
<filtering>true</filtering>
4545
</resource>

ear-web/pom.xml

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -974,6 +974,8 @@
974974
<include>ReviewApplicationManagement.xml</include>
975975
<include>SearchBundleManager.xml</include>
976976
<include>ProjectPaymentManagement.xml</include>
977+
<include>contest_creation_sns_message.txt</include>
978+
<include>contest_update_sns_message.txt</include>
977979
</includes>
978980
<filtering>true</filtering>
979981
</resource>
@@ -1029,8 +1031,15 @@
10291031
<configuration>
10301032
<defaultLibBundleDir>lib/</defaultLibBundleDir>
10311033
<skinnyModules>true</skinnyModules>
1032-
<!-- <applicationXml>conf/ear/META-INF/application.xml</applicationXml>-->
1034+
<applicationXml>conf/ear/META-INF/application.xml</applicationXml>
10331035
<modules>
1036+
<jarModule>
1037+
<groupId>com.topcoder</groupId>
1038+
<artifactId>direct-conf</artifactId>
1039+
<bundleFileName>conf</bundleFileName>
1040+
<bundleDir>./</bundleDir>
1041+
<unpack>true</unpack>
1042+
</jarModule>
10341043
<ejbModule>
10351044
<groupId>com.topcoder</groupId>
10361045
<artifactId>catalog_services_id_generator</artifactId>
@@ -1151,17 +1160,12 @@
11511160
<bundleDir>ejb/</bundleDir>
11521161
<bundleFileName>ldap_sdk_interface.jar</bundleFileName>
11531162
</ejbModule>
1154-
<jarModule>
1155-
<groupId>com.topcoder</groupId>
1156-
<artifactId>direct-conf</artifactId>
1157-
<bundleFileName>conf.jar</bundleFileName>
1158-
<bundleDir>./</bundleDir>
1159-
<!-- <unpack>true</unpack>-->
1160-
</jarModule>
11611163
<webModule>
11621164
<groupId>com.topcoder</groupId>
11631165
<artifactId>direct-app</artifactId>
11641166
<bundleFileName>direct.war</bundleFileName>
1167+
<contextRoot>/direct</contextRoot>
1168+
<unpack>true</unpack>
11651169
</webModule>
11661170
</modules>
11671171
</configuration>

0 commit comments

Comments
 (0)