summaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorBansal, Nitin (nb121v) <nitin.bansal@amdocs.com>2018-04-03 12:31:43 -0400
committerBansal, Nitin (nb121v) <nitin.bansal@amdocs.com>2018-04-03 13:00:34 -0400
commit2857310c33726032ce77449d91e87864e6bf4108 (patch)
tree5355cc654f8bac96287d9fc9fd767556d6aa3472 /pom.xml
parentd46b0b9c3ce9ad5eca684ebeccb89f04d3cbcf6c (diff)
Moving Historical Queries to spring boot
Change-Id: If4042f3b19b25b086e8f0c4b3723afe9839d994a Issue-ID: AAI-802 Signed-off-by: Bansal, Nitin (nb121v) <nitin.bansal@amdocs.com>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml22
1 files changed, 13 insertions, 9 deletions
diff --git a/pom.xml b/pom.xml
index 03c5d8d..fc5dd83 100644
--- a/pom.xml
+++ b/pom.xml
@@ -71,6 +71,10 @@ 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>
@@ -89,11 +93,7 @@ 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,8 +107,7 @@ 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>
@@ -122,6 +121,11 @@ 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>
@@ -299,12 +303,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>