Skip to content

Commit

Permalink
Update Parent POM to 39 (#207)
Browse files Browse the repository at this point in the history
  • Loading branch information
radcortez authored Feb 15, 2023
1 parent 7e41492 commit 7868b22
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 53 deletions.
2 changes: 1 addition & 1 deletion README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

image:https://github.com/smallrye/smallrye-common/workflows/SmallRye%20Build/badge.svg?branch=main[link={ci}]
image:https://sonarcloud.io/api/project_badges/measure?project=smallrye_smallrye-common&metric=alert_status["Quality Gate Status", link={sonar}]
image:https://img.shields.io/github/license/smallrye/smallrye-config.svg["License", link="http://www.apache.org/licenses/LICENSE-2.0"]
image:https://img.shields.io/github/license/smallrye/smallrye-common.svg["License", link="http://www.apache.org/licenses/LICENSE-2.0"]
image:https://img.shields.io/maven-central/v/io.smallrye.common/smallrye-common-parent?color=green[["Central", link="https://search.maven.org/search?q=g:io.smallrye.common"]

= SmallRye Common
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
public @interface Experimental {
/**
* Describes why the annotated element is experimental.
*
*
* @return the experimental description.
*/
String value();
Expand Down
55 changes: 13 additions & 42 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

<parent>
<groupId>io.smallrye</groupId>
<artifactId>smallrye-jakarta-parent</artifactId>
<version>36</version>
<artifactId>smallrye-parent</artifactId>
<version>39</version>
</parent>

<groupId>io.smallrye.common</groupId>
Expand All @@ -20,17 +20,15 @@
<properties>
<!-- Plugins -->
<version.module-info>1.2</version.module-info>
<version.sundrio>0.92.1</version.sundrio>
<version.sundrio>0.93.1</version.sundrio>
<version.jandex-maven-plugin>1.2.3</version.jandex-maven-plugin>

<!-- Use newer surefire so that building with modules works -->
<version.surefire.plugin>3.0.0-M5</version.surefire.plugin>

<!-- Dependencies -->
<version.asm>9.3</version.asm>
<version.graalvm>22.2.0</version.graalvm>
<version.vertx>4.3.3</version.vertx>
<version.graalvm>22.3.0</version.graalvm>
<version.vertx>4.3.8</version.vertx>
<version.maven>3.8.6</version.maven>
<version.shrinkwrap>1.2.6</version.shrinkwrap>

<!-- Sonar settings -->
<sonar.projectName>SmallRye Common</sonar.projectName>
Expand Down Expand Up @@ -102,7 +100,7 @@
<dependency>
<groupId>org.jboss.shrinkwrap</groupId>
<artifactId>shrinkwrap-bom</artifactId>
<version>1.2.6</version>
<version>${version.shrinkwrap}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down Expand Up @@ -187,24 +185,12 @@
</pluginManagement>
<plugins>
<plugin>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>enforce-versions</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireJavaVersion>
<version>11</version>
<message>This project must be built with Java 11 or later.</message>
</requireJavaVersion>
</rules>
</configuration>
</execution>
</executions>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<configuration>
<!-- Workaround to https://github.com/sundrio/sundrio/blob/main/maven-plugin/src/main/java/io/sundr/maven/GenerateBomMojo.java#L376 -->
<skip>${clean.skip}</skip>
</configuration>
</plugin>
<plugin>
<groupId>io.sundr</groupId>
Expand All @@ -231,21 +217,6 @@
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<executions>
<execution>
<id>default-compile</id>
<goals>
<goal>compile</goal>
</goals>
<configuration>
<!-- Use Java 11 release for the default compile -->
<release>11</release>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down
9 changes: 0 additions & 9 deletions to-jakarta.sh

This file was deleted.

0 comments on commit 7868b22

Please sign in to comment.