Skip to content

Commit c85a30f

Browse files
committed
fixing javadoc plugin
1 parent 957b8d8 commit c85a30f

File tree

2 files changed

+14
-12
lines changed

2 files changed

+14
-12
lines changed

meecrowave-core/pom.xml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -434,10 +434,7 @@
434434
<shadedClassifierName>runner</shadedClassifierName>
435435
<shadedArtifactAttached>true</shadedArtifactAttached>
436436
<createDependencyReducedPom>false</createDependencyReducedPom>
437-
<!--
438-
<dependencyReducedPomLocation>${project.build.directory}/reduced-pom-bundle.xml
439-
</dependencyReducedPomLocation>
440-
-->
437+
441438
<transformers>
442439
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
443440
<mainClass>org.apache.meecrowave.runner.Cli</mainClass>

pom.xml

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@
4848

4949
<properties>
5050
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
51+
<source>17</source>
52+
5153
<meecrowave.build.name>${project.groupId}.${project.artifactId}</meecrowave.build.name>
5254

5355
<!--X TODO verify if everything is really needed -->
@@ -217,14 +219,16 @@
217219
</pluginManagement>
218220

219221
<plugins>
220-
<plugin>
221-
<groupId>org.apache.maven.plugins</groupId>
222-
<artifactId>maven-compiler-plugin</artifactId>
223-
<version>3.13.0</version>
224-
<configuration>
225-
<release>17</release>
226-
</configuration>
227-
</plugin>
222+
<plugin>
223+
<groupId>org.apache.maven.plugins</groupId>
224+
<artifactId>maven-compiler-plugin</artifactId>
225+
<version>3.13.0</version>
226+
<configuration>
227+
<source>${source}</source>
228+
<target>${source}</target>
229+
<release>${source}</release>
230+
</configuration>
231+
</plugin>
228232

229233
<plugin>
230234
<groupId>org.apache.maven.plugins</groupId>
@@ -252,6 +256,7 @@
252256
<artifactId>maven-javadoc-plugin</artifactId>
253257
<version>3.2.0</version>
254258
<configuration>
259+
<release>${source}</release>
255260
<doclint>none</doclint>
256261
</configuration>
257262
</plugin>

0 commit comments

Comments
 (0)