Skip to content
Snippets Groups Projects
Commit e81cf337 authored by saketh somaraju [EPAM]'s avatar saketh somaraju [EPAM] :warning:
Browse files

Upgrade maven dependency versions

parent 7780ed37
No related branches found
No related tags found
1 merge request!264Upgrade maven dependency versions
...@@ -382,7 +382,6 @@ The following software have components provided under the terms of this license: ...@@ -382,7 +382,6 @@ The following software have components provided under the terms of this license:
- Netty/Codec/HTTP (from https://repo1.maven.org/maven2/io/netty/netty-codec-http) - Netty/Codec/HTTP (from https://repo1.maven.org/maven2/io/netty/netty-codec-http)
- Plexus Common Utilities (from http://plexus.codehaus.org/plexus-utils, https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-utils) - Plexus Common Utilities (from http://plexus.codehaus.org/plexus-utils, https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-utils)
- Redisson (from http://redisson.org) - Redisson (from http://redisson.org)
- SnakeYAML (from http://code.google.com/p/snakeyaml/, http://www.snakeyaml.org, https://bitbucket.org/snakeyaml/snakeyaml)
- Spring Core (from http://www.springframework.org, https://github.com/spring-projects/spring-framework, https://repo1.maven.org/maven2/org/springframework/spring-core) - Spring Core (from http://www.springframework.org, https://github.com/spring-projects/spring-framework, https://repo1.maven.org/maven2/org/springframework/spring-core)
- jaxen (from http://jaxen.codehaus.org/, https://repo1.maven.org/maven2/jaxen/jaxen) - jaxen (from http://jaxen.codehaus.org/, https://repo1.maven.org/maven2/jaxen/jaxen)
...@@ -528,7 +527,6 @@ The following software have components provided under the terms of this license: ...@@ -528,7 +527,6 @@ The following software have components provided under the terms of this license:
- Microsoft Application Insights Java SDK Spring Boot starter (from https://github.com/Microsoft/ApplicationInsights-Java) - Microsoft Application Insights Java SDK Spring Boot starter (from https://github.com/Microsoft/ApplicationInsights-Java)
- Microsoft Application Insights Java SDK Web Module (from https://github.com/Microsoft/ApplicationInsights-Java) - Microsoft Application Insights Java SDK Web Module (from https://github.com/Microsoft/ApplicationInsights-Java)
- Microsoft Application Insights Log4j 2 Appender (from https://github.com/Microsoft/ApplicationInsights-Java) - Microsoft Application Insights Log4j 2 Appender (from https://github.com/Microsoft/ApplicationInsights-Java)
- SnakeYAML (from http://code.google.com/p/snakeyaml/, http://www.snakeyaml.org, https://bitbucket.org/snakeyaml/snakeyaml)
======================================================================== ========================================================================
EPL-2.0 EPL-2.0
...@@ -593,7 +591,6 @@ GPL-2.0-or-later ...@@ -593,7 +591,6 @@ GPL-2.0-or-later
The following software have components provided under the terms of this license: The following software have components provided under the terms of this license:
- Cobertura (from http://cobertura.sourceforge.net) - Cobertura (from http://cobertura.sourceforge.net)
- SnakeYAML (from http://code.google.com/p/snakeyaml/, http://www.snakeyaml.org, https://bitbucket.org/snakeyaml/snakeyaml)
======================================================================== ========================================================================
GPL-2.0-with-classpath-exception GPL-2.0-with-classpath-exception
...@@ -717,7 +714,6 @@ The following software have components provided under the terms of this license: ...@@ -717,7 +714,6 @@ The following software have components provided under the terms of this license:
- Java Native Access (from https://github.com/java-native-access/jna, https://github.com/twall/jna) - Java Native Access (from https://github.com/java-native-access/jna, https://github.com/twall/jna)
- Java Native Access Platform (from https://github.com/java-native-access/jna) - Java Native Access Platform (from https://github.com/java-native-access/jna)
- Javassist (from http://www.javassist.org/) - Javassist (from http://www.javassist.org/)
- SnakeYAML (from http://code.google.com/p/snakeyaml/, http://www.snakeyaml.org, https://bitbucket.org/snakeyaml/snakeyaml)
======================================================================== ========================================================================
MIT MIT
......
...@@ -32,6 +32,7 @@ ...@@ -32,6 +32,7 @@
<jackson-databind.version>2.14.0</jackson-databind.version> <jackson-databind.version>2.14.0</jackson-databind.version>
<jackson.version>2.13.2</jackson.version> <jackson.version>2.13.2</jackson.version>
<spring-webmvc.version>5.3.22</spring-webmvc.version> <spring-webmvc.version>5.3.22</spring-webmvc.version>
<commons-beanutils.version>1.9.4</commons-beanutils.version>
</properties> </properties>
<prerequisites> <prerequisites>
...@@ -125,6 +126,17 @@ ...@@ -125,6 +126,17 @@
<version>${objectify.version}</version> <version>${objectify.version}</version>
</dependency> </dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<version>${commons-beanutils.version}</version>
</dependency>
<dependency>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty</artifactId>
<version>6.1.23</version>
</dependency>
<!-- Lucene Indexing Dependencies --> <!-- Lucene Indexing Dependencies -->
<dependency> <dependency>
<groupId>org.apache.lucene</groupId> <groupId>org.apache.lucene</groupId>
......
...@@ -176,6 +176,11 @@ ...@@ -176,6 +176,11 @@
<artifactId>spring-webmvc</artifactId> <artifactId>spring-webmvc</artifactId>
<version>${spring-webmvc.version}</version> <version>${spring-webmvc.version}</version>
</dependency> </dependency>
<dependency>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty</artifactId>
<version>6.1.23</version>
</dependency>
</dependencies> </dependencies>
<build> <build>
......
...@@ -51,6 +51,11 @@ ...@@ -51,6 +51,11 @@
<artifactId>gson</artifactId> <artifactId>gson</artifactId>
<version>2.9.1</version> <version>2.9.1</version>
</dependency> </dependency>
<dependency>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty</artifactId>
<version>6.1.23</version>
</dependency>
<dependency> <dependency>
<groupId>org.projectlombok</groupId> <groupId>org.projectlombok</groupId>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment