Skip to content

Commit

Permalink
Fix versions
Browse files Browse the repository at this point in the history
  • Loading branch information
ia3andy committed Jun 12, 2024
1 parent 4a764de commit b26db3d
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/project.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
release:
current-version: 0.0.1
next-version: 999-SNAPSHOT

2 changes: 1 addition & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
fail-fast: false
matrix:
# os: [windows-latest, macos-latest, ubuntu-latest]
os: [ ubuntu-latest, windows-latest, macos-latest ]
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
Expand Down
24 changes: 21 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,15 @@
<maven-source-plugin.version>3.3.0</maven-source-plugin.version>
<maven-release-plugin.version>3.0.1</maven-release-plugin.version>
<esbuild-java.version>1.4.3</esbuild-java.version>
<maven-plugin-plugin.version>3.13.1</maven-plugin-plugin.version>
<maven-deploy-plugin.version>3.1.2</maven-deploy-plugin.version>

<!-- Maven Core and Artifact Versions -->
<maven-artifact.version>3.9.7</maven-artifact.version>
<maven-core.version>3.9.7</maven-core.version>
<maven-model.version>3.9.7</maven-model.version>
<maven-plugin-annotations.version>3.6.4</maven-plugin-annotations.version>
<maven-plugin-api.version>3.9.3</maven-plugin-api.version>
<maven-plugin-annotations.version>3.13.1</maven-plugin-annotations.version>
<maven-plugin-api.version>3.9.7</maven-plugin-api.version>

<!-- Other Properties -->
<quarkus.version>3.6.0</quarkus.version>
Expand Down Expand Up @@ -208,7 +210,23 @@
</plugin>
</plugins>


<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>${maven-plugin-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>${maven-deploy-plugin.version}</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</pluginManagement>

</build>
<profiles>
Expand Down

0 comments on commit b26db3d

Please sign in to comment.