Skip to content

Commit abae657

Browse files
authored
Merge pull request #516 from TheSnoozer/update-plugin-management
Update plugin management
2 parents 937e4be + 2a16b57 commit abae657

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

.github/workflows/default-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ jobs:
120120
name: Deploy snapshot
121121
runs-on: ubuntu-latest
122122
needs: integration-test
123-
if: ${{ github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/master') }}
123+
if: ${{ github.event_name != 'pull_request' && !startsWith(github.ref, 'refs/tags/') && github.ref == 'refs/heads/master' }}
124124

125125
steps:
126126
- uses: actions/checkout@v1

pom.xml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -71,15 +71,15 @@
7171
<plugins>
7272
<plugin>
7373
<artifactId>maven-antrun-plugin</artifactId>
74-
<version>1.8</version>
74+
<version>3.0.0</version>
7575
</plugin>
7676
<plugin>
7777
<artifactId>maven-assembly-plugin</artifactId>
78-
<version>3.1.0</version>
78+
<version>3.3.0</version>
7979
</plugin>
8080
<plugin>
8181
<artifactId>maven-dependency-plugin</artifactId>
82-
<version>3.1.1</version>
82+
<version>3.1.2</version>
8383
</plugin>
8484
<plugin>
8585
<artifactId>maven-release-plugin</artifactId>
@@ -91,7 +91,7 @@
9191
</plugin>
9292
<plugin>
9393
<artifactId>maven-compiler-plugin</artifactId>
94-
<version>3.8.0</version>
94+
<version>3.8.1</version>
9595
</plugin>
9696
<plugin>
9797
<artifactId>maven-gpg-plugin</artifactId>
@@ -107,15 +107,15 @@
107107
</plugin>
108108
<plugin>
109109
<artifactId>maven-jar-plugin</artifactId>
110-
<version>3.1.0</version>
110+
<version>3.2.0</version>
111111
</plugin>
112112
<plugin>
113113
<artifactId>maven-plugin-plugin</artifactId>
114114
<version>${maven-plugin-plugin.version}</version>
115115
</plugin>
116116
<plugin>
117117
<artifactId>maven-surefire-plugin</artifactId>
118-
<version>2.22.0</version>
118+
<version>2.22.2</version>
119119
</plugin>
120120
<plugin>
121121
<artifactId>maven-install-plugin</artifactId>
@@ -127,7 +127,7 @@
127127
</plugin>
128128
<plugin>
129129
<artifactId>maven-site-plugin</artifactId>
130-
<version>3.7.1</version>
130+
<version>3.9.1</version>
131131
</plugin>
132132
</plugins>
133133
</pluginManagement>
@@ -167,7 +167,6 @@
167167
<plugin>
168168
<groupId>org.apache.maven.plugins</groupId>
169169
<artifactId>maven-gpg-plugin</artifactId>
170-
<version>1.6</version>
171170
<executions>
172171
<execution>
173172
<id>sign-artifacts</id>

0 commit comments

Comments
 (0)