diff options
author | Bansal, Nitin (nb121v) <nitin.bansal@amdocs.com> | 2018-04-04 10:21:55 -0400 |
---|---|---|
committer | Bansal, Nitin (nb121v) <nitin.bansal@amdocs.com> | 2018-04-04 10:35:44 -0400 |
commit | b9fbe7fa64e864f9101938917f76ca2c853c0840 (patch) | |
tree | 77214694805efc00a764b757b6a5c8317053b49d /pom.xml | |
parent | 38b21b628e78fe8956e5dfa97ed77c27326988db (diff) |
Refactoring to use camel servlet with spring boot
Change-Id: I7c439e9108d84e5e72a42d9dba3bbf7681517527
Issue-ID: AAI-802
Signed-off-by: Bansal, Nitin (nb121v) <nitin.bansal@amdocs.com>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 24 |
1 files changed, 10 insertions, 14 deletions
@@ -71,10 +71,6 @@ limitations under the License. <dependencies> <dependency> - <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-starter-jersey</artifactId> - </dependency> - <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-core</artifactId> <version>${logback.version}</version> @@ -93,7 +89,11 @@ limitations under the License. <groupId>org.apache.camel</groupId> <artifactId>camel-spring-boot-starter</artifactId> </dependency> - + <dependency> + <groupId>org.apache.camel</groupId> + <artifactId>camel-core</artifactId> + <version>2.20.1</version> + </dependency> <dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-servlet-starter</artifactId> @@ -107,7 +107,8 @@ limitations under the License. <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> - </dependency> + + </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> @@ -121,11 +122,6 @@ limitations under the License. <artifactId>javax.ws.rs-api</artifactId> <version>2.0.1</version> </dependency> - <dependency> - <groupId>org.eclipse.jetty</groupId> - <artifactId>jetty-security</artifactId> - <version>9.3.8.RC0</version> - </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-module-junit4</artifactId> @@ -174,7 +170,7 @@ limitations under the License. <dependency> <groupId>org.onap.aai.router-core</groupId> <artifactId>router-core</artifactId> - <version>1.1.0</version> + <version>1.2.0-SNAPSHOT</version> </dependency> <dependency> @@ -303,12 +299,12 @@ limitations under the License. </configuration> </plugin> <!-- license plugin --> - <!-- Uncomment this to add a license header to every source file --> + <!-- Uncomment this to add a license header to every source file <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>3.0</version> <configuration> <header>License.txt</header> <includes> <include>src/main/java/**</include> <include>src/test/java/**</include> </includes> </configuration> <executions> <execution> <goals> <goal>format</goal> </goals> - <phase>process-sources</phase> </execution> </executions> </plugin> + <phase>process-sources</phase> </execution> </executions> </plugin> --> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> |