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

Commit c17ca98

Browse files
committed
Merge pull request #99 from cloudspokes/technology-2014-12-11
Technology 2014 12 11
2 parents 1a9c1ba + 568ee86 commit c17ca98

File tree

214 files changed

+5952
-5075
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

214 files changed

+5952
-5075
lines changed

build-dependencies.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -362,6 +362,9 @@
362362
<property name="aws-java-sdk.jar" value="${ext_libdir}/aws-java-sdk/aws-java-sdk-1.0.004.jar"/>
363363
<property name="jackson-core.jar" value="${ext_libdir}/jackson/1.9.7/jackson-core-asl.jar"/>
364364
<property name="jackson-mapper.jar" value="${ext_libdir}/jackson/1.9.7/jackson-mapper-asl.jar"/>
365+
<property name="jackson-annotations-2.3.0.jar" value="${ext_libdir}/jackson/1.9.7/jackson-annotations-2.3.0.jar"/>
366+
<property name="jackson-core-2.3.2.jar" value="${ext_libdir}/jackson/1.9.7/jackson-core-2.3.2.jar"/>
367+
<property name="jackson-databind-2.3.2.jar" value="${ext_libdir}/jackson/1.9.7/jackson-databind-2.3.2.jar"/>
365368
<property name="axis.jar" value="${ext_libdir}/axis/1.3/axis.jar"/>
366369
<property name="commons-dbcp.jar" value="${ext_libdir}/commons-dbcp/commons-dbcp.jar"/>
367370
<property name="commons-discovery.jar" value="${ext_libdir}/commons-discovery/0.2/commons-discovery.jar"/>
@@ -443,6 +446,8 @@
443446
<property name="dom4j-1.6.1.jar" value="${poi_libdir}/ooxml-lib/dom4j-1.6.1.jar"/>
444447
<property name="xmlbeans-2.3.0.jar" value="${poi_libdir}/ooxml-lib/xmlbeans-2.3.0.jar"/>
445448

449+
<property name="java-jwt-0.2.jar" value="${ext_libdir}/jwt/java-jwt-0.2.jar"/>
450+
446451
<!-- Http Client libs -->
447452
<property name="httpclient_libdir" value="${ext_libdir}/httpclient"/>
448453

@@ -639,9 +644,13 @@
639644
<pathelement location="${yuicompressor.jar}"/>
640645
<pathelement location="${jackson-core.jar}"/>
641646
<pathelement location="${jackson-mapper.jar}"/>
647+
<pathelement location="${jackson-annotations-2.3.0.jar}"/>
648+
<pathelement location="${jackson-core-2.3.2.jar}"/>
649+
<pathelement location="${jackson-databind-2.3.2.jar}"/>
642650
<pathelement location="${scribe.jar}"/>
643651
<pathelement location="${jsr311.jar}"/>
644652
<pathelement location="${cxf.jar}"/>
653+
<pathelement location="${java-jwt-0.2.jar}"/>
645654
</path>
646655

647656
</project>

build.xml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,12 @@
311311
</copy>
312312
<copy file="${jackson-core.jar}" todir="${ear_shared_libdir}" overwrite="true"/>
313313
<copy file="${jackson-mapper.jar}" todir="${ear_shared_libdir}" overwrite="true"/>
314+
<copy file="${jackson-annotations-2.3.0.jar}" todir="${ear_shared_libdir}" overwrite="true"/>
315+
<copy file="${jackson-core-2.3.2.jar}" todir="${ear_shared_libdir}" overwrite="true"/>
316+
<copy file="${jackson-databind-2.3.2.jar}" todir="${ear_shared_libdir}" overwrite="true"/>
317+
314318
<copy file="${yuicompressor.jar}" todir="${ear_shared_libdir}" overwrite="true"/>
319+
<copy file="${java-jwt-0.2.jar}" todir="${ear_shared_libdir}" overwrite="true"/>
315320

316321
<!-- EJB components -->
317322
<copy file="${catalog_services_id_generator.jar}" todir="${build_distdir}/ejb" overwrite="true"/>
@@ -577,10 +582,6 @@
577582
<include name="jboss-cache/jboss-cache-jdk50.jar" />
578583
<include name="jboss-cache/jgroups.jar" />
579584
</fileset>
580-
<fileset dir="${tcs_libdir}">
581-
<include name="shared.jar" />
582-
<include name="tcwebcommon.jar" />
583-
</fileset>
584585
</copy>
585586
</target>
586587

conf/Direct.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ CONTEST_SERVICE_FACADE_PROVIDER_URL=@CONTEST_SERVICE_PROVIDER_URL@
1212
#The Auth0 related setting for the social accounts sign-in purpose.
1313
DOMAIN_AUTH0 = @DOMAIN_AUTH0@
1414
CLIENT_ID_AUTH0 = @CLIENT_ID_AUTH0@
15+
CLIENT_SECRET_AUTH0 = @CLIENT_SECRET_AUTH0@
1516
LDAP_AUTH0_CONNECTION_NAME = @LDAP_AUTH0_CONNECTION_NAME@
1617
REDIRECT_URL_AUTH0 = /reg2/callback.action
1718
REG_SERVER_NAME= @REG_SERVER_NAME@

conf/web/WEB-INF/applicationContext.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@
251251

252252
<!-- Actions -->
253253
<bean id="baseDirectStrutsAction"
254-
class="com.topcoder.direct.services.view.action.contest.launch.BaseDirectStrutsAction"
254+
class="com.topcoder.direct.services.view.action.BaseDirectStrutsAction"
255255
abstract="true">
256256
<property name="projectServiceFacade" ref="projectServiceFacade"/>
257257
<property name="contestServiceFacade" ref="contestServiceFacade"/>

conf/web/WEB-INF/struts.xml

Lines changed: 680 additions & 510 deletions
Large diffs are not rendered by default.

lib/tcs/tcwebcommon.jar

6.04 KB
Binary file not shown.
34.2 KB
Binary file not shown.
195 KB
Binary file not shown.
894 KB
Binary file not shown.
4.92 KB
Binary file not shown.

0 commit comments

Comments
 (0)