Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added javadoc plugin; 1.0.0.Alpha4->1.0.0.Alpha5 #77

Merged
merged 2 commits into from
Jan 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion grpc-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<parent>
<groupId>dev.resteasy.grpc</groupId>
<artifactId>resteasy-grpc-parent</artifactId>
<version>1.0.0.Alpha4</version>
<version>1.0.0.Alpha5</version>
</parent>

<artifactId>resteasy-grpc-bom</artifactId>
Expand Down
27 changes: 22 additions & 5 deletions grpc-bridge-runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>dev.resteasy.grpc</groupId>
<artifactId>resteasy-grpc-parent</artifactId>
<version>1.0.0.Alpha4</version>
<version>1.0.0.Alpha5</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>grpc-bridge-runtime</artifactId>
Expand Down Expand Up @@ -89,7 +89,7 @@
<version>1.6.1</version>
</extension>
</extensions>
<plugins>
<plugins>
<plugin>
<groupId>org.xolstice.maven.plugins</groupId>
<artifactId>protobuf-maven-plugin</artifactId>
Expand All @@ -112,8 +112,25 @@
</execution>
</executions>
</plugin>
</plugins>

</build>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<!--sourcepath>**\/\*.java:${project.build.directory}/generated-sources/protobuf/java</sourcepath-->
<sourcepath>${project.build.sourceDirectory}:${project.build.directory}/generated-sources/protobuf/java</sourcepath>

</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>

</build>

</project>
File renamed without changes.
25 changes: 19 additions & 6 deletions grpc-bridge/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>dev.resteasy.grpc</groupId>
<artifactId>resteasy-grpc-parent</artifactId>
<version>1.0.0.Alpha4</version>
<version>1.0.0.Alpha5</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down Expand Up @@ -68,10 +68,23 @@
<scope>provided</scope>
</dependency>

<!--dependency>
<groupId>dev.resteasy.grpc</groupId>
<artifactId>grpc-tests</artifactId>
<version>1.0.0.Alpha4</version>
</dependency-->
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

</project>
2 changes: 1 addition & 1 deletion grpc-test-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<parent>
<groupId>dev.resteasy.grpc</groupId>
<artifactId>resteasy-grpc-parent</artifactId>
<version>1.0.0.Alpha4</version>
<version>1.0.0.Alpha5</version>
</parent>

<artifactId>resteasy-grpc-test-bom</artifactId>
Expand Down
14 changes: 9 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<groupId>dev.resteasy.grpc</groupId>
<artifactId>resteasy-grpc-parent</artifactId>
<version>1.0.0.Alpha4</version>
<version>1.0.0.Alpha5</version>
<packaging>pom</packaging>

<url>https://resteasy.dev</url>
Expand Down Expand Up @@ -133,6 +133,10 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
</plugins>
</build>

Expand Down Expand Up @@ -189,7 +193,7 @@
useful for when we want to test with versions releases that have not yet been synchronized to Maven Central
from JBoss Nexus.
-->
<!--repository>
<repository>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
Expand All @@ -202,9 +206,9 @@
<name>JBoss Public Repository Group</name>
<url>https://repository.jboss.org/nexus/content/groups/public/</url>
<layout>default</layout>
</repository-->
</repository>
<!-- Required for PicketBox, once this is removed from WildFly this can be removed -->
<!--repository>
<repository>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
Expand All @@ -217,6 +221,6 @@
<name>JBoss Enterprise Maven Repository</name>
<url>https://maven.repository.redhat.com/ga/</url>
<layout>default</layout>
</repository-->
</repository>
</repositories>
</project>
15 changes: 14 additions & 1 deletion testsuite/grpc-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>dev.resteasy.grpc</groupId>
<artifactId>resteasy-grpc-testsuite</artifactId>
<version>1.0.0.Alpha4</version>
<version>1.0.0.Alpha5</version>
<relativePath>../pom.xml</relativePath>
</parent>
<properties>
Expand Down Expand Up @@ -458,6 +458,19 @@
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
2 changes: 1 addition & 1 deletion testsuite/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>dev.resteasy.grpc</groupId>
<artifactId>resteasy-grpc-parent</artifactId>
<version>1.0.0.Alpha4</version>
<version>1.0.0.Alpha5</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>resteasy-grpc-testsuite</artifactId>
Expand Down