Skip to content

Commit e2de216

Browse files
committed
Adds javadoc generation
Signed-off-by: Frank Schnicke <[email protected]>
1 parent 3d59f16 commit e2de216

File tree

3 files changed

+39
-0
lines changed
  • basyx.components
    • basyx.components.docker
    • basyx.components.lib

3 files changed

+39
-0
lines changed

basyx.components/basyx.components.docker/basyx.components.AASServer/pom.xml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,19 @@
5252
<plugin>
5353
<groupId>org.apache.maven.plugins</groupId>
5454
<artifactId>maven-javadoc-plugin</artifactId>
55+
<version>3.2.0</version>
56+
<configuration>
57+
<source>8</source>
58+
</configuration>
59+
<executions>
60+
<execution>
61+
<goals>
62+
<goal>jar</goal>
63+
</goals>
64+
<id>generate-javadoc</id>
65+
<phase>package</phase>
66+
</execution>
67+
</executions>
5568
</plugin>
5669
</plugins>
5770
</build>

basyx.components/basyx.components.docker/basyx.components.registry/pom.xml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,19 @@
4747
<plugin>
4848
<groupId>org.apache.maven.plugins</groupId>
4949
<artifactId>maven-javadoc-plugin</artifactId>
50+
<version>3.2.0</version>
51+
<configuration>
52+
<source>8</source>
53+
</configuration>
54+
<executions>
55+
<execution>
56+
<goals>
57+
<goal>jar</goal>
58+
</goals>
59+
<id>generate-javadoc</id>
60+
<phase>package</phase>
61+
</execution>
62+
</executions>
5063
</plugin>
5164
</plugins>
5265
</build>

basyx.components/basyx.components.lib/pom.xml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,19 @@
4848
<plugin>
4949
<groupId>org.apache.maven.plugins</groupId>
5050
<artifactId>maven-javadoc-plugin</artifactId>
51+
<version>3.2.0</version>
52+
<configuration>
53+
<source>8</source>
54+
</configuration>
55+
<executions>
56+
<execution>
57+
<goals>
58+
<goal>jar</goal>
59+
</goals>
60+
<id>generate-javadoc</id>
61+
<phase>package</phase>
62+
</execution>
63+
</executions>
5164
</plugin>
5265
</plugins>
5366
</build>

0 commit comments

Comments
 (0)