Skip to content

Commit

Permalink
Standalone workflows, upgraded dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
robertvazan committed Nov 13, 2023
1 parent f7562db commit f41d693
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 11 deletions.
19 changes: 15 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,18 @@ on:
workflow_dispatch:
jobs:
build:
uses: robertvazan/rvscaffold/.github/workflows/java-build.yml@master
with:
java-version: 17
test-coverage: false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
with:
distribution: temurin
java-version: 17
cache: maven
- name: Maven
run: |
# GPG must be skipped, because CI server does not have release GPG key.
# Failure on javadoc warnings is enabled only in CI builds,
# so that warnings specific to one JDK version do not break independent builds.
# Printing maven version (-V) helps diagnose CI-specific build behavior.
mvn install -Dgpg.skip=true -Dmaven.javadoc.failOnWarnings=true -B -V
14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,43 +52,43 @@
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-core</artifactId>
<version>1.34</version>
<version>1.37</version>
</dependency>
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-generator-annprocess</artifactId>
<version>1.34</version>
<version>1.37</version>
</dependency>
<dependency>
<groupId>com.machinezoo.hookless</groupId>
<artifactId>hookless</artifactId>
<version>0.16.0</version>
<version>0.16.1</version>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<version>3.11.0</version>
<configuration>
<annotationProcessorPaths>
<path>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-generator-annprocess</artifactId>
<version>1.34</version>
<version>1.37</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M5</version>
<version>3.2.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.3</version>
<version>3.5.1</version>
<executions>
<execution>
<phase>package</phase>
Expand Down

0 comments on commit f41d693

Please sign in to comment.