Skip to content

Commit

Permalink
Change parent to commonjava
Browse files Browse the repository at this point in the history
  • Loading branch information
ruhan1 committed Mar 27, 2024
1 parent 69b5dd1 commit cc1cc1a
Showing 1 changed file with 27 additions and 3 deletions.
30 changes: 27 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@

<parent>
<groupId>org.commonjava</groupId>
<artifactId>service-parent</artifactId>
<version>5-SNAPSHOT</version>
<artifactId>commonjava</artifactId>
<version>19-SNAPSHOT</version>
</parent>

<groupId>org.commonjava.indy.service</groupId>
<artifactId>indy-security</artifactId>
<version>1.2-SNAPSHOT</version>
Expand All @@ -42,7 +42,9 @@
<properties>
<projectEmail>https://github.com/Commonjava/indy-security</projectEmail>
<skipTests>false</skipTests>
<javaVersion>11</javaVersion>
<plugin.jacoco.skip>false</plugin.jacoco.skip>
<quarkus.version>3.6.9</quarkus.version>
</properties>

<repositories>
Expand All @@ -55,6 +57,18 @@
</repository>
</repositories>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.quarkus.platform</groupId>
<artifactId>quarkus-bom</artifactId>
<version>${quarkus.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>
<dependency>
<groupId>io.quarkus</groupId>
Expand Down Expand Up @@ -109,6 +123,16 @@
<plugin>
<groupId>io.quarkus.platform</groupId>
<artifactId>quarkus-maven-plugin</artifactId>
<version>${quarkus.version}</version>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<systemPropertyVariables>
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
<maven.home>${maven.home}</maven.home>
</systemPropertyVariables>
</configuration>
</plugin>
</plugins>
</build>
Expand Down

0 comments on commit cc1cc1a

Please sign in to comment.