Skip to content

Commit cc64f5c

Browse files
committed
Bump Maven plugin versions (including maven-shade-plugin -> 3.6.0)
1 parent c1546fc commit cc64f5c

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

commandapi-platforms/commandapi-bukkit/commandapi-bukkit-plugin-mojang-mapped/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@
145145
<plugin>
146146
<groupId>org.apache.maven.plugins</groupId>
147147
<artifactId>maven-jar-plugin</artifactId>
148-
<version>3.4.1</version>
148+
<version>3.4.2</version>
149149
<configuration>
150150
<archive>
151151
<manifestEntries>

docssrc/src/setup_shading.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,15 +139,15 @@ Add the CommandAPI shade dependency:
139139

140140
</div>
141141

142-
You can shade the CommandAPI easily by adding the `maven-shade-plugin` to your build sequence using version `3.3.0` (compatible with Java 16):
142+
You can shade the CommandAPI easily by adding the `maven-shade-plugin` to your build sequence:
143143

144144
```xml
145145
<build>
146146
<plugins>
147147
<plugin>
148148
<groupId>org.apache.maven.plugins</groupId>
149149
<artifactId>maven-shade-plugin</artifactId>
150-
<version>3.3.0</version>
150+
<version>3.6.0</version>
151151
<executions>
152152
<execution>
153153
<id>shade</id>

examples/bukkit/maven-shaded-annotations/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
<plugin>
7373
<groupId>org.apache.maven.plugins</groupId>
7474
<artifactId>maven-shade-plugin</artifactId>
75-
<version>3.4.1</version>
75+
<version>3.6.0</version>
7676
<executions>
7777
<execution>
7878
<id>shade</id>

examples/bukkit/maven-shaded-tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@
115115
<plugin>
116116
<groupId>org.apache.maven.plugins</groupId>
117117
<artifactId>maven-shade-plugin</artifactId>
118-
<version>3.4.1</version>
118+
<version>3.6.0</version>
119119
<executions>
120120
<execution>
121121
<id>shade</id>

examples/bukkit/maven-shaded/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
<plugin>
6262
<groupId>org.apache.maven.plugins</groupId>
6363
<artifactId>maven-shade-plugin</artifactId>
64-
<version>3.4.1</version>
64+
<version>3.6.0</version>
6565
<executions>
6666
<execution>
6767
<id>shade</id>

examples/velocity/maven-shaded/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
<plugin>
4848
<groupId>org.apache.maven.plugins</groupId>
4949
<artifactId>maven-shade-plugin</artifactId>
50-
<version>3.4.1</version>
50+
<version>3.6.0</version>
5151
<executions>
5252
<execution>
5353
<id>shade</id>

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -118,27 +118,27 @@
118118
<plugin>
119119
<groupId>org.apache.maven.plugins</groupId>
120120
<artifactId>maven-jar-plugin</artifactId>
121-
<version>3.2.2</version>
121+
<version>3.4.2</version>
122122
</plugin>
123123
<plugin>
124124
<groupId>org.apache.maven.plugins</groupId>
125125
<artifactId>maven-source-plugin</artifactId>
126-
<version>3.2.1</version>
126+
<version>3.3.1</version>
127127
</plugin>
128128
<plugin>
129129
<groupId>org.apache.maven.plugins</groupId>
130130
<artifactId>maven-compiler-plugin</artifactId>
131-
<version>3.10.1</version>
131+
<version>3.13.0</version>
132132
</plugin>
133133
<plugin>
134134
<groupId>org.apache.maven.plugins</groupId>
135135
<artifactId>maven-shade-plugin</artifactId>
136-
<version>3.3.0</version>
136+
<version>3.6.0</version>
137137
</plugin>
138138
<plugin>
139139
<groupId>org.apache.maven.plugins</groupId>
140140
<artifactId>maven-javadoc-plugin</artifactId>
141-
<version>3.4.0</version>
141+
<version>3.10.1</version>
142142
</plugin>
143143
<plugin>
144144
<groupId>org.jacoco</groupId>

0 commit comments

Comments
 (0)