Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#67 ⬆️ pushing dependencies to new minor/patch versions #68

Merged
merged 1 commit into from
Jun 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 12 additions & 6 deletions fermenter-mda/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
<packaging>maven-plugin</packaging>

<properties>
<version.jackson>2.17.0</version.jackson>
<version.jackson>2.17.1</version.jackson>
<version.maven.core>3.8.6</version.maven.core>
<version.maven.plugin.tools>3.11.0</version.maven.plugin.tools>
<version.logback>1.5.3</version.logback>
<version.maven.plugin.tools>3.13.1</version.maven.plugin.tools>
<version.logback>1.5.6</version.logback>
</properties>

<dependencyManagement>
Expand All @@ -25,7 +25,7 @@
<dependency>
<groupId>org.mozilla</groupId>
<artifactId>rhino</artifactId>
<version>1.7.14</version>
<version>1.7.15</version>
</dependency>
</dependencies>
</dependencyManagement>
Expand Down Expand Up @@ -63,7 +63,7 @@
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.3.1</version>
<version>1.3.2</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
Expand Down Expand Up @@ -128,6 +128,12 @@
NB:Should get pulled from maven-plugin-testing-harness, but temporarily being specified directly to resolve
CVE-2023-37460. Can be retired when maven-plugin-testing-harness uses plexus-archiver >= 4.8.0.
-->
<dependency>
<groupId>org.iq80.snappy</groupId>
<artifactId>snappy</artifactId>
<version>0.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-archiver</artifactId>
Expand Down Expand Up @@ -173,7 +179,7 @@
<plugin>
<groupId>org.eclipse.sisu</groupId>
<artifactId>sisu-maven-plugin</artifactId>
<version>0.9.0.M2</version>
<version>0.9.0.M3</version>
<executions>
<execution>
<id>generate-index</id>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.16.0</version>
<version>2.16.1</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand All @@ -102,7 +102,7 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>33.1.0-jre</version>
<version>33.2.1-jre</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down
2 changes: 1 addition & 1 deletion test-primer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<plugin>
<groupId>org.technologybrewery.habushu</groupId>
<artifactId>habushu-maven-plugin</artifactId>
<version>2.12.1</version>
<version>2.15.0</version>
<extensions>true</extensions>
</plugin>
</plugins>
Expand Down
Loading