Skip to content

Commit 741022c

Browse files
committed
Use vertx5-parent
1 parent fca746c commit 741022c

File tree

7 files changed

+49
-12
lines changed

7 files changed

+49
-12
lines changed

pom.xml

Lines changed: 37 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
<parent>
55
<groupId>io.vertx</groupId>
6-
<artifactId>vertx-ext-parent</artifactId>
7-
<version>38</version>
6+
<artifactId>vertx5-parent</artifactId>
7+
<version>3</version>
88
</parent>
99

1010
<modelVersion>4.0.0</modelVersion>
@@ -17,7 +17,6 @@
1717
<stack.version>5.0.0-SNAPSHOT</stack.version>
1818
<grpc.version>1.61.0</grpc.version>
1919
<protoc.version>3.21.12</protoc.version>
20-
<doc.skip>true</doc.skip>
2120
</properties>
2221

2322
<dependencyManagement>
@@ -68,4 +67,39 @@
6867
<module>vertx-grpc-it</module>
6968
</modules>
7069

70+
<build>
71+
<pluginManagement>
72+
<plugins>
73+
<plugin>
74+
<artifactId>maven-compiler-plugin</artifactId>
75+
<executions>
76+
<execution>
77+
<id>default-compile</id>
78+
<phase>compile</phase>
79+
<configuration>
80+
<annotationProcessors>
81+
<annotationProcessor>io.vertx.codegen.CodeGenProcessor</annotationProcessor>
82+
<annotationProcessor>io.vertx.docgen.JavaDocGenProcessor</annotationProcessor>
83+
</annotationProcessors>
84+
</configuration>
85+
</execution>
86+
</executions>
87+
</plugin>
88+
</plugins>
89+
</pluginManagement>
90+
<plugins>
91+
<plugin>
92+
<artifactId>maven-assembly-plugin</artifactId>
93+
<executions>
94+
<execution>
95+
<id>package-docs</id>
96+
<goals>
97+
<goal>single</goal>
98+
</goals>
99+
</execution>
100+
</executions>
101+
</plugin>
102+
</plugins>
103+
</build>
104+
71105
</project>

vertx-grpc-client/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
<name>Vert.x gRPC Client</name>
3131

3232
<properties>
33-
<doc.skip>false</doc.skip>
3433
<jar.manifest>${project.basedir}/src/main/resources/META-INF/MANIFEST.MF</jar.manifest>
3534
</properties>
3635

vertx-grpc-common/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
<name>Vert.x gRPC Common</name>
3131

3232
<properties>
33-
<doc.skip>false</doc.skip>
3433
<jar.manifest>${project.basedir}/src/main/resources/META-INF/MANIFEST.MF</jar.manifest>
3534
</properties>
3635

vertx-grpc-context-storage/pom.xml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,6 @@
1919
context data maps.
2020
</description>
2121

22-
<properties>
23-
<doc.skip>false</doc.skip>
24-
</properties>
25-
2622
<dependencies>
2723
<dependency>
2824
<groupId>io.vertx</groupId>

vertx-grpc-it/pom.xml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
<name>Vert.x gRPC integration tests</name>
3131

3232
<properties>
33-
<doc.skip>true</doc.skip>
3433
<jar.manifest>${project.basedir}/src/main/resources/META-INF/MANIFEST.MF</jar.manifest>
3534
</properties>
3635

@@ -110,6 +109,18 @@
110109
</extension>
111110
</extensions>
112111
<plugins>
112+
<plugin>
113+
<artifactId>maven-compiler-plugin</artifactId>
114+
<executions>
115+
<execution>
116+
<id>default-compile</id>
117+
<phase>compile</phase>
118+
<configuration>
119+
<proc>none</proc>
120+
</configuration>
121+
</execution>
122+
</executions>
123+
</plugin>
113124
<plugin>
114125
<groupId>org.xolstice.maven.plugins</groupId>
115126
<artifactId>protobuf-maven-plugin</artifactId>

vertx-grpc-protoc-plugin2/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
<name>Vert.x gRPC Protoc Plugin</name>
3131

3232
<properties>
33-
<doc.skip>false</doc.skip>
3433
<canteen.version>1.1.0</canteen.version>
3534
<protoc.version>3.21.12</protoc.version>
3635
<jprotoc.version>1.2.1</jprotoc.version>

vertx-grpc-server/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
<name>Vert.x gRPC Server</name>
3131

3232
<properties>
33-
<doc.skip>false</doc.skip>
3433
<jar.manifest>${project.basedir}/src/main/resources/META-INF/MANIFEST.MF</jar.manifest>
3534
</properties>
3635

0 commit comments

Comments
 (0)