Skip to content

Commit

Permalink
Dependency upgrades,fix #1094. moved managt of version for testcontai…
Browse files Browse the repository at this point in the history
…ners to top level + various mvn plugins upgrades

Signed-off-by: Julien Nioche <[email protected]>
  • Loading branch information
jnioche committed Sep 18, 2023
1 parent 156f817 commit 15711ad
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 23 deletions.
1 change: 0 additions & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,6 @@
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>selenium</artifactId>
<version>1.19.0</version>
<scope>test</scope>
</dependency>

Expand Down
2 changes: 1 addition & 1 deletion external/opensearch/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</parent>

<properties>
<opensearch.version>2.7.0</opensearch.version>
<opensearch.version>2.9.0</opensearch.version>
</properties>

<artifactId>storm-crawler-opensearch</artifactId>
Expand Down
12 changes: 0 additions & 12 deletions external/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,18 +43,6 @@
</profile>
</profiles>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers-bom</artifactId>
<version>1.18.1</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>
<dependency>
<groupId>org.apache.storm</groupId>
Expand Down
2 changes: 1 addition & 1 deletion external/solr/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<description>Solr resources for StormCrawler</description>

<properties>
<solr.version>9.2.1</solr.version>
<solr.version>9.3.0</solr.version>
</properties>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion external/warc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

<properties>
<commons-codec.version>1.10</commons-codec.version>
<jwarc.version>0.22.0</jwarc.version>
<jwarc.version>0.28.2</jwarc.version>
<mockito-all.version>1.10.8</mockito-all.version>
<wiremock.version>2.27.2</wiremock.version>
</properties>
Expand Down
24 changes: 17 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,13 @@
<!-- dependency versions -->
<junit.version>4.13.2</junit.version>
<storm-client.version>2.5.0</storm-client.version>
<jackson.version>2.15.0</jackson.version>
<jackson.version>2.15.2</jackson.version>
<tika.version>2.9.0</tika.version>
<mockito.version>5.3.1</mockito.version>
<mockito.version>5.5.0</mockito.version>
<jetbrains.annotations.version>24.0.1</jetbrains.annotations.version>
<log4j2.version>2.20.0</log4j2.version>
<git-code-format-maven-plugin.version>4.2</git-code-format-maven-plugin.version>
<testcontainers.version>1.19.0</testcontainers.version>
</properties>

<distributionManagement>
Expand All @@ -98,7 +99,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.1.0</version>
<version>3.1.2</version>
<configuration>
<argLine>${argLine}</argLine>
</configuration>
Expand All @@ -115,7 +116,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.0.0</version>
<version>3.0.1</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<useReleaseProfile>false</useReleaseProfile>
Expand Down Expand Up @@ -200,7 +201,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.3.0</version>
<version>3.4.1</version>
<executions>
<execution>
<id>enforce-maven</id>
Expand Down Expand Up @@ -247,7 +248,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<version>3.3.0</version>
<executions>
<execution>
<id>attach-sources</id>
Expand Down Expand Up @@ -275,7 +276,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.5.0</version>
<version>3.6.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
Expand Down Expand Up @@ -345,6 +346,15 @@
<version>${jetbrains.annotations.version}</version>
<scope>compile</scope>
</dependency>

<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers-bom</artifactId>
<version>${testcontainers.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>

</dependencies>
</dependencyManagement>

Expand Down

0 comments on commit 15711ad

Please sign in to comment.