Skip to content

Commit

Permalink
updated versions of some dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
TheRealNestor committed Dec 14, 2023
1 parent be209d9 commit f9bd7a8
Show file tree
Hide file tree
Showing 4 changed files with 69 additions and 5 deletions.
2 changes: 1 addition & 1 deletion modeldefinition/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<version>1.9.2</version>
<version>1.9.4</version>
</dependency>
</dependencies>

Expand Down
20 changes: 19 additions & 1 deletion orchestration/coe/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</parent>

<properties>
<jackson-2-version>2.9.10.3</jackson-2-version>
<jackson-2-version>2.12.7.1</jackson-2-version>
</properties>

<groupId>org.into-cps.orchestration</groupId>
Expand All @@ -31,6 +31,8 @@
</pluginRepository>
</pluginRepositories>



<dependencies>

<dependency>
Expand Down Expand Up @@ -87,6 +89,16 @@
<groupId>org.into-cps.fmi</groupId>
<artifactId>fmi2</artifactId>
</dependency>


<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-compress -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>1.21</version>
</dependency>


<dependency>
<groupId>org.into-cps.fmi</groupId>
<artifactId>jnifmuapi</artifactId>
Expand Down Expand Up @@ -131,13 +143,19 @@
<scope>test</scope>
</dependency>


<!-- https://mvnrepository.com/artifact/log4j/apache-log4j-extras -->
<dependency>
<groupId>log4j</groupId>
<artifactId>apache-log4j-extras</artifactId>
<version>1.2.17</version>
</dependency>

<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.22.0</version>
</dependency>

<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-csv -->
<dependency>
Expand Down
10 changes: 9 additions & 1 deletion orchestration/webapi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@
<groupId>org.into-cps.orchestration</groupId>
<artifactId>webapi</artifactId>
<properties>
<sprintboot.version>2.1.8.RELEASE</sprintboot.version>
<sprintboot.version>2.2.11.RELEASE</sprintboot.version>
<log4j2.version>2.12.1</log4j2.version>
</properties>


<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
Expand All @@ -28,6 +29,13 @@
<artifactId>spring-boot-starter-log4j2</artifactId>
</dependency>

<!-- https://mvnrepository.com/artifact/net.minidev/json-smart -->
<dependency>
<groupId>net.minidev</groupId>
<artifactId>json-smart</artifactId>
<version>2.5.0</version>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
Expand Down
42 changes: 40 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
</dependency>



</dependencies>

<dependencyManagement>
Expand All @@ -64,6 +65,33 @@
<scope>test</scope>
</dependency>


<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.7.5</version>
<exclusions>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
</exclusions>
</dependency>

<!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core -->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.22.0</version>
</dependency>

<!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-api -->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.22.0</version>
</dependency>

<dependency>
<groupId>org.into-cps.fmi</groupId>
<artifactId>fmi2</artifactId>
Expand All @@ -79,15 +107,25 @@
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
<version>2.15.1</version>
</dependency>

<!-- https://mvnrepository.com/artifact/commons-beanutils/commons-beanutils -->
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<version>1.9.4</version>
</dependency>


<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.3.2</version>
<version>3.14.0</version>
</dependency>



</dependencies>
</dependencyManagement>

Expand Down

0 comments on commit f9bd7a8

Please sign in to comment.