Skip to content

Commit 6ae9611

Browse files
committed
add java sources plugin
bump pom version
1 parent afa7f43 commit 6ae9611

File tree

1 file changed

+20
-3
lines changed

1 file changed

+20
-3
lines changed

aemdesign-aem-services/pom.xml

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>design.aem</groupId>
1010
<artifactId>aemdesign-aem-core</artifactId>
11-
<version>2.0.566</version>
11+
<version>2.0.581</version>
1212
<relativePath>../pom.xml</relativePath>
1313
</parent>
1414

@@ -17,7 +17,7 @@
1717
<!-- ====================================================================== -->
1818

1919
<artifactId>aemdesign-aem-services</artifactId>
20-
<version>2.0.566</version>
20+
<version>2.0.581</version>
2121
<packaging>jar</packaging>
2222
<name>AEM Design - Core - AEM Services</name>
2323
<description>Project for all AEM and OSGI Services</description>
@@ -256,17 +256,34 @@ org.apache.commons.jexl3.*
256256
</configuration>
257257
</plugin>
258258

259+
<plugin>
260+
<groupId>org.apache.maven.plugins</groupId>
261+
<artifactId>maven-source-plugin</artifactId>
262+
<version>3.2.0</version>
263+
<executions>
264+
<execution>
265+
<id>attach-sources</id>
266+
<phase>verify</phase>
267+
<goals>
268+
<goal>jar-no-fork</goal>
269+
</goals>
270+
</execution>
271+
</executions>
272+
</plugin>
259273

260274
<plugin>
261275
<groupId>org.apache.maven.plugins</groupId>
262276
<artifactId>maven-javadoc-plugin</artifactId>
263-
<version>2.10.4</version>
277+
<version>3.1.1</version>
264278
<configuration>
279+
<show>private</show>
280+
<nohelp>true</nohelp>
265281
<excludePackageNames>
266282
*.impl
267283
</excludePackageNames>
268284
</configuration>
269285
</plugin>
286+
270287
<plugin>
271288
<groupId>org.apache.maven.plugins</groupId>
272289
<artifactId>maven-checkstyle-plugin</artifactId>

0 commit comments

Comments
 (0)