Skip to content

Commit 2632e54

Browse files
committed
Make builds more easily reproducible
1 parent 60c67d5 commit 2632e54

2 files changed

Lines changed: 11 additions & 6 deletions

File tree

pom.xml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
<properties>
5151
<encoding>UTF-8</encoding>
5252
<slf4j.version>1.7.25</slf4j.version>
53+
<project.build.outputTimestamp>1970-01-01T00:00:00Z</project.build.outputTimestamp>
5354
</properties>
5455

5556
<dependencies>
@@ -89,7 +90,7 @@
8990
<plugins>
9091
<plugin>
9192
<artifactId>maven-compiler-plugin</artifactId>
92-
<version>3.6.1</version>
93+
<version>3.8.1</version>
9394
<configuration>
9495
<source>1.8</source>
9596
<target>1.8</target>
@@ -109,7 +110,7 @@
109110
<plugin>
110111
<groupId>org.apache.maven.plugins</groupId>
111112
<artifactId>maven-surefire-plugin</artifactId>
112-
<version>3.0.0-M3</version>
113+
<version>3.0.0-M5</version>
113114
</plugin>
114115
</plugins>
115116
</build>
@@ -179,7 +180,7 @@
179180
<plugin>
180181
<groupId>org.apache.maven.plugins</groupId>
181182
<artifactId>maven-shade-plugin</artifactId>
182-
<version>3.0.0</version>
183+
<version>3.2.4</version>
183184
<executions>
184185
<execution>
185186
<phase>package</phase>
@@ -207,7 +208,7 @@
207208
<plugin>
208209
<groupId>org.apache.maven.plugins</groupId>
209210
<artifactId>maven-source-plugin</artifactId>
210-
<version>3.0.1</version>
211+
<version>3.2.1</version>
211212
<executions>
212213
<execution>
213214
<id>attach-sources</id>
@@ -220,11 +221,14 @@
220221
<plugin>
221222
<groupId>org.apache.maven.plugins</groupId>
222223
<artifactId>maven-javadoc-plugin</artifactId>
223-
<version>2.10.4</version>
224+
<version>3.3.0</version>
224225
<configuration>
226+
<source>8</source>
225227
<quiet>true</quiet>
226228
<show>protected</show>
227229
<linksource>true</linksource>
230+
<notimestamp>true</notimestamp>
231+
<bottom>Released under the MIT license.</bottom>
228232
<tags>
229233
<tag>
230234
<name>querycommands</name>

src/main/java/com/github/theholywaffle/teamspeak3/api/event/BaseEvent.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,8 @@ public String getInvokerUniqueId() {
9595
* <p>
9696
* Here's an incomplete list of known reason IDs:
9797
* </p>
98-
* <table summary="Incomplete list of known reason IDs">
98+
* <table>
99+
* <caption>Incomplete list of known reason IDs</caption>
99100
* <tr><th>ID</th><th>Description</th></tr>
100101
* <tr><td>-1</td><td>No reason present</td></tr>
101102
* <tr><td>0</td><td>No external cause</td></tr>

0 commit comments

Comments
 (0)