Skip to content

Commit

Permalink
More cleanup of hardcoded versions
Browse files Browse the repository at this point in the history
  • Loading branch information
onobc committed Oct 25, 2024
1 parent 259bc1b commit 224defd
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 18 deletions.
6 changes: 6 additions & 0 deletions spring-cloud-dataflow-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,12 @@
<spring-cloud-dataflow-apps-metadata-plugin.version>1.0.14</spring-cloud-dataflow-apps-metadata-plugin.version>
<springdoc-openapi.version>2.6.0</springdoc-openapi.version>
<guava.version>32.1.3-jre</guava.version>
<!-- database driver versions -->
<oracle-ojdbc8.version>21.9.0.0</oracle-ojdbc8.version>
<db2-jcc.version>11.5.9.0</db2-jcc.version>
<!-- questionable testing libs -->
<org-json.version>20240303</org-json.version>
<littleproxy.version>1.1.2</littleproxy.version>
</properties>
<dependencyManagement>
<dependencies>
Expand Down
1 change: 0 additions & 1 deletion spring-cloud-dataflow-rest-resource/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>org.codehaus.jettison</groupId>
Expand Down
4 changes: 2 additions & 2 deletions spring-cloud-dataflow-shell-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20230227</version>
<version>${org-json.version}</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -108,7 +108,7 @@
<dependency>
<groupId>org.littleshoot</groupId>
<artifactId>littleproxy</artifactId>
<version>1.1.2</version>
<version>${littleproxy.version}</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
2 changes: 0 additions & 2 deletions spring-cloud-skipper/spring-cloud-skipper-server-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@
<dependency>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
<version>[3.1.2,)</version>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
Expand Down Expand Up @@ -244,7 +243,6 @@
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-suite</artifactId>
<version>1.11.0</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
14 changes: 2 additions & 12 deletions spring-cloud-skipper/spring-cloud-skipper-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,6 @@
<properties>
<maven-javadoc-plugin.version>3.4.1</maven-javadoc-plugin.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
<version>[3.1.2,)</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
Expand Down Expand Up @@ -113,16 +104,15 @@
<dependency>
<groupId>com.ibm.db2</groupId>
<artifactId>jcc</artifactId>
<version>11.5.9.0</version>
<version>${db2-jcc.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.oracle.database.jdbc</groupId>
<artifactId>ojdbc8</artifactId>
<version>21.9.0.0</version>
<version>${oracle-ojdbc8.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion spring-cloud-skipper/spring-cloud-skipper/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dataflow-common-persistence</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>${dataflow.version}</version>
</dependency>
</dependencies>
<build>
Expand Down

0 comments on commit 224defd

Please sign in to comment.