Skip to content

Commit fabc39e

Browse files
committed
Updated several maven dependencies to latest version. Introduced maven-source-plugin in order to create a xxx-sources.jar during build. Also enhanced maven-javadoc-plugin configuration to pack all documentation into a xxx-javadoc.jar when building the project.
1 parent 6b70752 commit fabc39e

File tree

1 file changed

+26
-5
lines changed

1 file changed

+26
-5
lines changed

pom.xml

Lines changed: 26 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,31 @@
3333
<target>1.9</target>
3434
</configuration>
3535
</plugin>
36+
<plugin>
37+
<groupId>org.apache.maven.plugins</groupId>
38+
<artifactId>maven-source-plugin</artifactId>
39+
<version>3.2.1</version>
40+
<executions>
41+
<execution>
42+
<id>attach-sources</id>
43+
<goals>
44+
<goal>jar</goal>
45+
</goals>
46+
</execution>
47+
</executions>
48+
</plugin>
3649
<plugin>
3750
<groupId>org.apache.maven.plugins</groupId>
3851
<artifactId>maven-javadoc-plugin</artifactId>
3952
<version>3.2.0</version>
53+
<executions>
54+
<execution>
55+
<id>attach-javadocs</id>
56+
<goals>
57+
<goal>jar</goal>
58+
</goals>
59+
</execution>
60+
</executions>
4061
<configuration>
4162
<doclint>all</doclint>
4263
<doctitle>TheTVDB Java ${project.version} API</doctitle>
@@ -113,7 +134,7 @@
113134
<dependency>
114135
<groupId>com.fasterxml.jackson.core</groupId>
115136
<artifactId>jackson-databind</artifactId>
116-
<version>2.11.0</version>
137+
<version>2.11.2</version>
117138
</dependency>
118139

119140
<!--#####################################-->
@@ -164,29 +185,29 @@
164185
<dependency>
165186
<groupId>org.mockito</groupId>
166187
<artifactId>mockito-core</artifactId>
167-
<version>3.3.3</version>
188+
<version>3.4.6</version>
168189
<scope>test</scope>
169190
</dependency>
170191

171192
<!-- Mockserver: server -->
172193
<dependency>
173194
<groupId>org.mock-server</groupId>
174195
<artifactId>mockserver-netty</artifactId>
175-
<version>5.10.0</version>
196+
<version>5.11.1</version>
176197
<scope>test</scope>
177198
</dependency>
178199
<!-- Mockserver: Java client -->
179200
<dependency>
180201
<groupId>org.mock-server</groupId>
181202
<artifactId>mockserver-client-java</artifactId>
182-
<version>5.10.0</version>
203+
<version>5.11.1</version>
183204
<scope>test</scope>
184205
</dependency>
185206
<!-- Mockserver: JUnit 5 extension -->
186207
<dependency>
187208
<groupId>org.mock-server</groupId>
188209
<artifactId>mockserver-junit-jupiter</artifactId>
189-
<version>5.10.0</version>
210+
<version>5.11.1</version>
190211
<scope>test</scope>
191212
</dependency>
192213

0 commit comments

Comments
 (0)