Skip to content

Commit 2da671c

Browse files
committed
build: empty javadoc for internal http2 classes (required by Maven Central)
1 parent 9919cb1 commit 2da671c

File tree

3 files changed

+66
-0
lines changed

3 files changed

+66
-0
lines changed

modules/jooby-http2-jetty/pom.xml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,26 @@
5757
<scope>test</scope>
5858
</dependency>
5959
</dependencies>
60+
61+
<build>
62+
<plugins>
63+
<!-- empty javadoc require by Maven Central -->
64+
<plugin>
65+
<groupId>org.apache.maven.plugins</groupId>
66+
<artifactId>maven-jar-plugin</artifactId>
67+
<executions>
68+
<execution>
69+
<phase>package</phase>
70+
<goals>
71+
<goal>jar</goal>
72+
</goals>
73+
<configuration>
74+
<classifier>javadoc</classifier>
75+
<classesDirectory>${project.basedir}/src/main/javadoc</classesDirectory>
76+
</configuration>
77+
</execution>
78+
</executions>
79+
</plugin>
80+
</plugins>
81+
</build>
6082
</project>

modules/jooby-http2-netty/pom.xml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,26 @@
5151
<scope>test</scope>
5252
</dependency>
5353
</dependencies>
54+
55+
<build>
56+
<plugins>
57+
<!-- empty javadoc require by Maven Central -->
58+
<plugin>
59+
<groupId>org.apache.maven.plugins</groupId>
60+
<artifactId>maven-jar-plugin</artifactId>
61+
<executions>
62+
<execution>
63+
<phase>package</phase>
64+
<goals>
65+
<goal>jar</goal>
66+
</goals>
67+
<configuration>
68+
<classifier>javadoc</classifier>
69+
<classesDirectory>${project.basedir}/src/main/javadoc</classesDirectory>
70+
</configuration>
71+
</execution>
72+
</executions>
73+
</plugin>
74+
</plugins>
75+
</build>
5476
</project>

modules/jooby-http2-undertow/pom.xml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,26 @@
4545
<scope>test</scope>
4646
</dependency>
4747
</dependencies>
48+
49+
<build>
50+
<plugins>
51+
<!-- empty javadoc require by Maven Central -->
52+
<plugin>
53+
<groupId>org.apache.maven.plugins</groupId>
54+
<artifactId>maven-jar-plugin</artifactId>
55+
<executions>
56+
<execution>
57+
<phase>package</phase>
58+
<goals>
59+
<goal>jar</goal>
60+
</goals>
61+
<configuration>
62+
<classifier>javadoc</classifier>
63+
<classesDirectory>${project.basedir}/src/main/javadoc</classesDirectory>
64+
</configuration>
65+
</execution>
66+
</executions>
67+
</plugin>
68+
</plugins>
69+
</build>
4870
</project>

0 commit comments

Comments
 (0)