Skip to content

Commit b26db3d

Browse files
committed
Fix versions
1 parent 4a764de commit b26db3d

File tree

3 files changed

+23
-4
lines changed

3 files changed

+23
-4
lines changed

.github/project.yml

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
release:
22
current-version: 0.0.1
33
next-version: 999-SNAPSHOT
4+

.github/workflows/maven.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
fail-fast: false
2222
matrix:
2323
# os: [windows-latest, macos-latest, ubuntu-latest]
24-
os: [ ubuntu-latest, windows-latest, macos-latest ]
24+
os: [ ubuntu-latest ]
2525
runs-on: ${{ matrix.os }}
2626
steps:
2727
- uses: actions/checkout@v3

pom.xml

+21-3
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,15 @@
5151
<maven-source-plugin.version>3.3.0</maven-source-plugin.version>
5252
<maven-release-plugin.version>3.0.1</maven-release-plugin.version>
5353
<esbuild-java.version>1.4.3</esbuild-java.version>
54+
<maven-plugin-plugin.version>3.13.1</maven-plugin-plugin.version>
55+
<maven-deploy-plugin.version>3.1.2</maven-deploy-plugin.version>
5456

5557
<!-- Maven Core and Artifact Versions -->
5658
<maven-artifact.version>3.9.7</maven-artifact.version>
5759
<maven-core.version>3.9.7</maven-core.version>
5860
<maven-model.version>3.9.7</maven-model.version>
59-
<maven-plugin-annotations.version>3.6.4</maven-plugin-annotations.version>
60-
<maven-plugin-api.version>3.9.3</maven-plugin-api.version>
61+
<maven-plugin-annotations.version>3.13.1</maven-plugin-annotations.version>
62+
<maven-plugin-api.version>3.9.7</maven-plugin-api.version>
6163

6264
<!-- Other Properties -->
6365
<quarkus.version>3.6.0</quarkus.version>
@@ -208,7 +210,23 @@
208210
</plugin>
209211
</plugins>
210212

211-
213+
<pluginManagement>
214+
<plugins>
215+
<plugin>
216+
<groupId>org.apache.maven.plugins</groupId>
217+
<artifactId>maven-plugin-plugin</artifactId>
218+
<version>${maven-plugin-plugin.version}</version>
219+
</plugin>
220+
<plugin>
221+
<groupId>org.apache.maven.plugins</groupId>
222+
<artifactId>maven-deploy-plugin</artifactId>
223+
<version>${maven-deploy-plugin.version}</version>
224+
<configuration>
225+
<skip>true</skip>
226+
</configuration>
227+
</plugin>
228+
</plugins>
229+
</pluginManagement>
212230

213231
</build>
214232
<profiles>

0 commit comments

Comments
 (0)