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

Bump to Vert.x 4.5.1 #878

Merged
merged 4 commits into from
Dec 20, 2023
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 pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<properties>
<sonar.coverage.jacoco.xmlReportPaths>target/site/jacoco/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths>

<vertx.version>4.5.0</vertx.version>
<vertx.version>4.5.1</vertx.version>
<mutiny.version>2.5.3</mutiny.version>
<jackson.version>2.16.0</jackson.version>
<reactive-streams.version>1.0.4</reactive-streams.version>
Expand Down
3 changes: 3 additions & 0 deletions vertx-mutiny-clients/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
<module>vertx-mutiny-runtime</module>
<module>vertx-mutiny-core</module>
<module>vertx-mutiny-junit5</module>
<module>vertx-mutiny-camel-bridge</module>
<module>vertx-mutiny-mail-client</module>
<module>vertx-mutiny-bridge-common</module>
<module>vertx-mutiny-web-common</module>
Expand Down Expand Up @@ -54,8 +55,10 @@
<module>vertx-mutiny-web-validation</module>
<module>vertx-mutiny-web-openapi</module>
<module>vertx-mutiny-web-api-service</module>
<module>vertx-mutiny-web-api-contract</module>
<module>vertx-mutiny-web-templ-freemarker</module>
<module>vertx-mutiny-web-templ-handlebars</module>
<module>vertx-mutiny-web-templ-httl</module>
<module>vertx-mutiny-web-templ-jade</module>
<module>vertx-mutiny-web-templ-mvel</module>
<module>vertx-mutiny-web-templ-pebble</module>
Expand Down
120 changes: 120 additions & 0 deletions vertx-mutiny-clients/vertx-mutiny-camel-bridge/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,120 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>io.smallrye.reactive</groupId>
<artifactId>vertx-mutiny-clients</artifactId>
<version>3.8.0-SNAPSHOT</version>
</parent>

<artifactId>smallrye-mutiny-vertx-camel-bridge</artifactId>
<name>SmallRye Mutiny - Vert.x Camel Bridge</name>

<properties>
<gen-source-groupId>io.vertx</gen-source-groupId>
<gen-source-artifactId>vertx-camel-bridge</gen-source-artifactId>
<gen.output>${project.build.directory}/sources/java</gen.output>
</properties>

<dependencies>
<!-- Generation source -->
<dependency>
<groupId>${gen-source-groupId}</groupId>
<artifactId>${gen-source-artifactId}</artifactId>
<version>${vertx.version}</version>
</dependency>

<!-- Vert.x mutiny Core -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>smallrye-mutiny-vertx-core</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<configuration>
<includeGroupIds>${gen-source-groupId}</includeGroupIds>
<includeArtifactIds>${gen-source-artifactId}</includeArtifactIds>
<classifier>sources</classifier>
<includeTypes>jar</includeTypes>
</configuration>
<executions>
<!-- Unpack java sources to target/java-sources -->
<execution>
<id>unpack-java</id>
<phase>generate-sources</phase>
<goals>
<goal>unpack-dependencies</goal>
</goals>
<configuration>
<includes>io/vertx/**/*.java</includes>
<excludes>**/impl/**/*.java</excludes>
<outputDirectory>${gen.output}</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Automatic-Module-Name>io.smallrye.mutiny.vertx.camel.bridge</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.bsc.maven</groupId>
<artifactId>maven-processor-plugin</artifactId>
<version>5.0-jdk8</version>
<configuration>
<systemProperties>
<java.util.logging.SimpleFormatter.format>%4$s: %3$s - %5$s %6$s%n
</java.util.logging.SimpleFormatter.format>
<mvel2.disable.jit>true</mvel2.disable.jit>
</systemProperties>
</configuration>
<executions>
<!-- Run the annotation processor on java sources and generate the API -->
<execution>
<id>generate-api</id>
<goals>
<goal>process</goal>
</goals>
<phase>generate-sources</phase>
<configuration>
<sourceDirectory>${project.build.directory}/sources/java</sourceDirectory>
<processors>
<processor>io.vertx.codegen.CodeGenProcessor</processor>
</processors>
<optionMap>
<codegen.generators>mutiny</codegen.generators>
</optionMap>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

<profiles>
<profile>
<id>windows</id>
<activation>
<os>
<family>Windows</family>
</os>
</activation>
<properties>
<maven.test.skip>true</maven.test.skip>
</properties>
</profile>
</profiles>

</project>
128 changes: 128 additions & 0 deletions vertx-mutiny-clients/vertx-mutiny-web-api-contract/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,128 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>io.smallrye.reactive</groupId>
<artifactId>vertx-mutiny-clients</artifactId>
<version>3.8.0-SNAPSHOT</version>
</parent>

<artifactId>smallrye-mutiny-vertx-web-api-contract</artifactId>
<name>SmallRye Mutiny - Vert.x Web API Contract</name>

<properties>
<gen-source-groupId>io.vertx</gen-source-groupId>
<gen-source-artifactId>vertx-web-api-contract</gen-source-artifactId>
<gen.output>${project.build.directory}/sources/java</gen.output>
</properties>

<dependencies>
<!-- Generation source -->
<dependency>
<groupId>${gen-source-groupId}</groupId>
<artifactId>${gen-source-artifactId}</artifactId>
<version>${vertx.version}</version>
</dependency>

<!-- Dependencies -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>smallrye-mutiny-vertx-core</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>smallrye-mutiny-vertx-web</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<configuration>
<includeGroupIds>${gen-source-groupId}</includeGroupIds>
<includeArtifactIds>${gen-source-artifactId}</includeArtifactIds>
<classifier>sources</classifier>
<includeTypes>jar</includeTypes>
</configuration>
<executions>
<!-- Unpack java sources to target/java-sources -->
<execution>
<id>unpack-java</id>
<phase>generate-sources</phase>
<goals>
<goal>unpack-dependencies</goal>
</goals>
<configuration>
<includes>io/vertx/**/*.java</includes>
<excludes>**/impl/**/*.java</excludes>
<outputDirectory>${gen.output}</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>

<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Automatic-Module-Name>io.smallrye.mutiny.vertx.web.api.contract</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>

<plugin>
<groupId>org.bsc.maven</groupId>
<artifactId>maven-processor-plugin</artifactId>
<version>5.0-jdk8</version>
<configuration>
<systemProperties>
<java.util.logging.SimpleFormatter.format>%4$s: %3$s - %5$s %6$s%n
</java.util.logging.SimpleFormatter.format>
<mvel2.disable.jit>true</mvel2.disable.jit>
</systemProperties>
</configuration>
<executions>
<!-- Run the annotation processor on java sources and generate the API -->
<execution>
<id>generate-api</id>
<goals>
<goal>process</goal>
</goals>
<phase>generate-sources</phase>
<configuration>
<sourceDirectory>${project.build.directory}/sources/java</sourceDirectory>
<processors>
<processor>io.vertx.codegen.CodeGenProcessor</processor>
</processors>
<optionMap>
<codegen.generators>mutiny</codegen.generators>
</optionMap>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

<profiles>
<profile>
<id>windows</id>
<activation>
<os>
<family>Windows</family>
</os>
</activation>
<properties>
<maven.test.skip>true</maven.test.skip>
</properties>
</profile>
</profiles>

</project>
Loading
Loading