|
25 | 25 | <plugin> |
26 | 26 | <groupId>org.apache.maven.plugins</groupId> |
27 | 27 | <artifactId>maven-clean-plugin</artifactId> |
28 | | - <version>3.3.2</version> |
| 28 | + <version>3.4.0</version> |
29 | 29 | </plugin> |
30 | 30 | <plugin> |
31 | 31 | <groupId>org.apache.maven.plugins</groupId> |
32 | 32 | <artifactId>maven-compiler-plugin</artifactId> |
33 | | - <version>3.12.1</version> |
| 33 | + <version>3.13.0</version> |
34 | 34 | <configuration> |
35 | | - <source>1.8</source> |
36 | | - <target>1.8</target> |
| 35 | + <source>8</source> |
| 36 | + <target>8</target> |
37 | 37 | </configuration> |
38 | 38 | </plugin> |
39 | 39 | <plugin> |
40 | 40 | <groupId>org.apache.maven.plugins</groupId> |
41 | 41 | <artifactId>maven-shade-plugin</artifactId> |
42 | | - <version>3.5.1</version> |
| 42 | + <version>3.6.0</version> |
43 | 43 | <configuration> |
44 | 44 | <minimizeJar>false</minimizeJar> |
45 | 45 | <createDependencyReducedPom>false</createDependencyReducedPom> |
|
101 | 101 | <filter> |
102 | 102 | <artifact>*:*</artifact> |
103 | 103 | <excludes> |
104 | | - <exclude>META-INF/*.SF</exclude> |
105 | | - <exclude>META-INF/*.DSA</exclude> |
106 | | - <exclude>META-INF/*.RSA</exclude> |
| 104 | + <exclude>META-INF/**</exclude> |
107 | 105 | </excludes> |
108 | 106 | </filter> |
109 | 107 | </filters> |
|
117 | 115 | </execution> |
118 | 116 | </executions> |
119 | 117 | </plugin> |
120 | | - <plugin> |
121 | | - <artifactId>maven-deploy-plugin</artifactId> |
122 | | - <version>3.1.1</version> |
123 | | - <configuration> |
124 | | - <altDeploymentRepository>internal.repo::default::file://${project.build.directory}/mvn-repo</altDeploymentRepository> |
125 | | - </configuration> |
126 | | - </plugin> |
127 | | - <plugin> |
128 | | - <groupId>com.github.github</groupId> |
129 | | - <artifactId>site-maven-plugin</artifactId> |
130 | | - <version>0.12</version> |
131 | | - <configuration> |
132 | | - <message>Maven artifacts for the DriveBackupV2 API</message> <!-- git commit message --> |
133 | | - <noJekyll>true</noJekyll> <!-- disable webpage processing --> |
134 | | - <merge>true</merge> |
135 | | - <outputDirectory>${project.build.directory}/mvn-repo</outputDirectory> <!-- matches distribution management repository url above --> |
136 | | - <branch>refs/heads/mvn-repo</branch> <!-- remote branch name --> |
137 | | - <includes><include>**/*</include></includes> |
138 | | - <repositoryName>DriveBackupV2</repositoryName> <!-- github repo name --> |
139 | | - <repositoryOwner>MaxMaeder</repositoryOwner> <!-- github username --> |
140 | | - <oauth2Token>${github.global.oauth}</oauth2Token> |
141 | | - </configuration> |
142 | | - <executions> |
143 | | - <!-- run site-maven-plugin's 'site' target as part of the build's normal 'deploy' phase --> |
144 | | - <execution> |
145 | | - <goals> |
146 | | - <goal>site</goal> |
147 | | - </goals> |
148 | | - <phase>deploy</phase> |
149 | | - </execution> |
150 | | - </executions> |
151 | | - </plugin> |
152 | 118 | </plugins> |
153 | 119 | </build> |
154 | | - <distributionManagement> |
155 | | - <repository> |
156 | | - <id>internal.repo</id> |
157 | | - <name>Temporary Staging Repository</name> |
158 | | - <url>file://${project.build.directory}/mvn-repo</url> |
159 | | - </repository> |
160 | | - </distributionManagement> |
161 | 120 | <repositories> |
162 | 121 | <repository> |
163 | 122 | <id>bukkit-repo</id> |
|
184 | 143 | <dependency> |
185 | 144 | <groupId>org.bstats</groupId> |
186 | 145 | <artifactId>bstats-bukkit</artifactId> |
187 | | - <version>3.0.2</version> |
| 146 | + <version>3.1.0</version> |
188 | 147 | </dependency> |
189 | 148 | <dependency> |
190 | 149 | <groupId>com.squareup.okhttp3</groupId> |
|
211 | 170 | <artifactId>sardine</artifactId> |
212 | 171 | <version>5.12</version> |
213 | 172 | </dependency> |
214 | | - <dependency> |
215 | | - <groupId>commons-codec</groupId> |
216 | | - <artifactId>commons-codec</artifactId> |
217 | | - <version>1.17.1</version> |
218 | | - </dependency> |
219 | 173 | <dependency> |
220 | 174 | <groupId>net.kyori</groupId> |
221 | 175 | <artifactId>adventure-platform-bukkit</artifactId> |
222 | | - <version>4.3.3</version> |
| 176 | + <version>4.3.4</version> |
223 | 177 | </dependency> |
224 | 178 | <dependency> |
225 | 179 | <groupId>net.kyori</groupId> |
|
234 | 188 | <dependency> |
235 | 189 | <groupId>io.minio</groupId> |
236 | 190 | <artifactId>minio</artifactId> |
237 | | - <version>8.5.11</version> |
| 191 | + <version>8.5.14</version> |
238 | 192 | </dependency> |
239 | 193 | </dependencies> |
240 | 194 | </project> |
0 commit comments