Skip to content

Commit

Permalink
update example project dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-manes committed Apr 2, 2023
1 parent 4e54c96 commit 2a8e0f5
Show file tree
Hide file tree
Showing 7 changed files with 39 additions and 24 deletions.
15 changes: 14 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,17 @@ updates:
- gradle-plugin-portal
schedule:
interval: weekly
open-pull-requests-limit: 10

# Maintain dependencies for examples
- package-ecosystem: maven
directory: examples/coalescing-bulkloader
schedule:
interval: weekly
- package-ecosystem: maven
directory: examples/write-behind-rxjava
schedule:
interval: weekly
- package-ecosystem: gradle
directory: examples/hibernate
schedule:
interval: weekly
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.7/apache-maven-3.8.7-bin.zip
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.1.1/maven-wrapper-3.1.1.jar
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.1/apache-maven-3.9.1-bin.zip
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar
17 changes: 9 additions & 8 deletions examples/coalescing-bulkloader/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,17 @@
<properties>
<java.version>11</java.version>
<junit.version>4.13.2</junit.version>
<caffeine.version>3.1.2</caffeine.version>
<caffeine.version>3.1.5</caffeine.version>
<awaitility.version>4.2.0</awaitility.version>
<maven-jar-plugin.version>3.3.0</maven-jar-plugin.version>
<maven-site-plugin.version>3.12.1</maven-site-plugin.version>
<maven-clean-plugin.version>3.2.0</maven-clean-plugin.version>
<maven-deploy-plugin.version>3.0.0</maven-deploy-plugin.version>
<maven-install-plugin.version>3.0.1</maven-install-plugin.version>
<maven-compiler-plugin.version>3.7.0</maven-compiler-plugin.version>
<maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version>
<maven-resources-plugin.version>3.3.0</maven-resources-plugin.version>
<maven-deploy-plugin.version>3.1.1</maven-deploy-plugin.version>
<maven-install-plugin.version>3.1.1</maven-install-plugin.version>
<maven-enforcer-plugin.version>3.2.1</maven-enforcer-plugin.version>
<maven-surefire-plugin.version>3.0.0</maven-surefire-plugin.version>
<maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
<maven-resources-plugin.version>3.3.1</maven-resources-plugin.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
Expand All @@ -47,7 +48,7 @@
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
Expand All @@ -56,7 +57,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.2.1</version>
<version>${maven-enforcer-plugin.version}</version>
<executions>
<execution>
<id>enforce-maven</id>
Expand Down
4 changes: 2 additions & 2 deletions examples/hibernate/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[versions]
caffeine = "3.1.5"
h2 = "2.1.214"
hibernate = "6.2.0.CR3"
hibernate = "6.2.0.Final"
junit = "5.9.2"
slf4j = "2.0.6"
slf4j = "2.0.7"
truth = "1.1.3"
versions = "0.46.0"

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1-rc-1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1-rc-2-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.7/apache-maven-3.8.7-bin.zip
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.1.1/maven-wrapper-3.1.1.jar
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.1/apache-maven-3.9.1-bin.zip
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar
17 changes: 9 additions & 8 deletions examples/write-behind-rxjava/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,17 @@
<java.version>11</java.version>
<junit.version>4.13.2</junit.version>
<rxjava.version>2.2.21</rxjava.version>
<caffeine.version>3.1.2</caffeine.version>
<caffeine.version>3.1.5</caffeine.version>
<awaitility.version>4.2.0</awaitility.version>
<maven-jar-plugin.version>3.3.0</maven-jar-plugin.version>
<maven-site-plugin.version>3.12.1</maven-site-plugin.version>
<maven-clean-plugin.version>3.2.0</maven-clean-plugin.version>
<maven-deploy-plugin.version>3.0.0</maven-deploy-plugin.version>
<maven-install-plugin.version>3.0.1</maven-install-plugin.version>
<maven-compiler-plugin.version>3.7.0</maven-compiler-plugin.version>
<maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version>
<maven-resources-plugin.version>3.3.0</maven-resources-plugin.version>
<maven-deploy-plugin.version>3.1.1</maven-deploy-plugin.version>
<maven-install-plugin.version>3.1.1</maven-install-plugin.version>
<maven-enforcer-plugin.version>3.2.1</maven-enforcer-plugin.version>
<maven-surefire-plugin.version>3.0.0</maven-surefire-plugin.version>
<maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
<maven-resources-plugin.version>3.3.1</maven-resources-plugin.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
Expand Down Expand Up @@ -53,7 +54,7 @@
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
Expand All @@ -62,7 +63,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.2.1</version>
<version>${maven-enforcer-plugin.version}</version>
<executions>
<execution>
<id>enforce-maven</id>
Expand Down

0 comments on commit 2a8e0f5

Please sign in to comment.