diff options
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 22 |
1 files changed, 13 insertions, 9 deletions
@@ -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> |