Skip to content

Commit

Permalink
update multiple dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardojlrufino committed Aug 21, 2018
1 parent bc974d2 commit 99aeb16
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 20 deletions.
4 changes: 2 additions & 2 deletions opendevice-core/pom.xml
Expand Up @@ -21,7 +21,7 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.9.3</version>
<version>2.9.6</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -50,7 +50,7 @@
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>2.0.31-beta</version>
<version>2.21.0</version>
<scope>test</scope>
</dependency>

Expand Down
2 changes: 1 addition & 1 deletion opendevice-js-engine/pom.xml
Expand Up @@ -49,7 +49,7 @@
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>2.0.31-beta</version>
<version>2.21.0</version>
<scope>test</scope>
</dependency>

Expand Down
19 changes: 9 additions & 10 deletions opendevice-middleware/pom.xml
Expand Up @@ -35,7 +35,7 @@
<dependency>
<groupId>org.secnod.shiro</groupId>
<artifactId>shiro-jersey</artifactId>
<version>0.1.0</version>
<version>0.1.0</version> <!-- For Jersey 1.X -->
<exclusions>
<exclusion>
<groupId>com.sun.jersey</groupId>
Expand Down Expand Up @@ -99,27 +99,27 @@
<!--</dependency>-->

<dependency>
<groupId>org.mapdb</groupId>
<artifactId>mapdb</artifactId>
<version>1.0.10-SNAPSHOT</version>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>26.0-jre</version>
</dependency>

<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.4.196</version>
<version>1.4.197</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
<version>5.3.4.Final</version>
<version>5.3.5.Final</version>
</dependency>

<!-- https://mvnrepository.com/artifact/org.hibernate/hibernate-hikaricp -->
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-hikaricp</artifactId>
<version>5.3.4.Final</version>
<version>5.3.5.Final</version>
</dependency>

<!-- https://mvnrepository.com/artifact/com.zaxxer/HikariCP -->
Expand Down Expand Up @@ -188,8 +188,7 @@
<dependency>
<groupId>org.knowm</groupId>
<artifactId>sundial</artifactId>
<version>2.1.2-SNAPSHOT</version>
<!--<version>2.1.1</version>-->
<version>2.1.3</version>
</dependency>


Expand All @@ -205,7 +204,7 @@
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-core</artifactId>
<version>4.2.0</version>
<version>5.1.4</version>
</dependency>

<dependency>
Expand Down
12 changes: 6 additions & 6 deletions opendevice-servers/opendevice-rest-ws-server/pom.xml
Expand Up @@ -17,9 +17,9 @@
<jaxb-version>2.1</jaxb-version>
<nettosphere-version>3.0.8</nettosphere-version>
<!--<nettosphere-version>2.4.11-SNAPSHOT</nettosphere-version>-->
<atmosphere-version>2.4.27</atmosphere-version>
<atmosphere-extensions>2.4.19</atmosphere-extensions>
<shiro-version>1.2.4</shiro-version>
<atmosphere-version>2.4.30</atmosphere-version>
<atmosphere-extensions>2.4.21</atmosphere-extensions>
<shiro-version>1.4.0</shiro-version>
</properties>

<dependencies>
Expand Down Expand Up @@ -121,13 +121,13 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.9.0.pr3</version>
<version>2.9.6</version>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.jaxrs</groupId>
<artifactId>jackson-jaxrs-json-provider</artifactId>
<version>2.9.0.pr3</version>
<version>2.9.6</version>
</dependency>

<!-- security -->
Expand Down Expand Up @@ -177,7 +177,7 @@
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.2</version>
<version>4.5.6</version>
</dependency>
<!-- On future we can use: http://unirest.io/java.html -->

Expand Down
10 changes: 9 additions & 1 deletion pom.xml
Expand Up @@ -97,6 +97,14 @@
</configuration>
</plugin>

<!-- Check updates : mvn versions:display-dependency-updates -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.5</version>
</plugin>


</plugins>

<pluginManagement>
Expand Down Expand Up @@ -163,7 +171,7 @@
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.6.1</version>
<version>1.7.25</version>
</dependency>
</dependencies>
</project>

0 comments on commit 99aeb16

Please sign in to comment.