Skip to content

Commit

Permalink
Client pom (#134)
Browse files Browse the repository at this point in the history
* update the pom file and adding webapp folder

* update the pom file and adding webapp folder

* update the pom file and adding webapp folder

* refer wfnews client pom file
  • Loading branch information
yzlucas authored Oct 2, 2024
1 parent bd19ed9 commit a5eda20
Showing 1 changed file with 32 additions and 44 deletions.
76 changes: 32 additions & 44 deletions client/wfprev-war/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,46 +24,43 @@

<dependencies>

<!-- Webade OAUTH2 -->
<dependency>
<groupId>javax.ws.rs</groupId>
<artifactId>javax.ws.rs-api</artifactId>
<groupId>ca.bc.gov.nrs.wfone.common</groupId>
<artifactId>wfone-common-webade-oauth2</artifactId>
</dependency>
<dependency>
<groupId>ca.bc.gov.nrs.wfone.common</groupId>
<artifactId>wfone-common-webade-oauth2-test</artifactId>
</dependency>

<!-- Spring -->
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-common</artifactId>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</dependency>

<!-- API, java.xml.bind module -->
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<version>2.3.2</version>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</dependency>
<!-- Runtime, com.sun.xml.bind module -->
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<version>2.3.2</version>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</dependency>

<!-- Webade OAUTH2 -->
<dependency>
<groupId>ca.bc.gov.nrs.wfone.common</groupId>
<artifactId>wfone-common-webade-oauth2</artifactId>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</dependency>
<dependency>
<groupId>ca.bc.gov.nrs.wfone.common</groupId>
<artifactId>wfone-common-webade-oauth2-test</artifactId>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
</dependency>

<!-- Spring -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
</dependency>
</dependency>

<dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<scope>provided</scope>
Expand All @@ -74,33 +71,24 @@
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-core</artifactId>
</dependency>

<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-config</artifactId>
</dependency>

<!-- Spring Security OAuth -->
<!-- Spring Security OAuth -->
<dependency>
<groupId>org.tuckey</groupId>
<artifactId>urlrewritefilter</artifactId>
<groupId>org.springframework.security.oauth</groupId>
<artifactId>spring-security-oauth2</artifactId>
</dependency>

<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<scope>provided</scope>
<groupId>org.tuckey</groupId>
<artifactId>urlrewritefilter</artifactId>
</dependency>

<!-- Logging -->
Expand All @@ -113,21 +101,21 @@
<artifactId>jcl-over-slf4j</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>apache-log4j-extras</artifactId>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
</dependency>

</dependencies>
<build>
<!-- Configure the resources to be filtered for componentId replacement -->
<!-- Configure the resources to be filtered for property replacement -->
<resources>
<resource>
<directory>src/main/resources</directory>
Expand Down

0 comments on commit a5eda20

Please sign in to comment.