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

Flatten quarkus-bom #15899

Merged
merged 1 commit into from Mar 22, 2021
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 18 additions & 0 deletions bom/application/pom.xml
Expand Up @@ -5115,4 +5115,22 @@
</dependency>
</dependencies>
</dependencyManagement>

<build>
<plugins>
<plugin>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-platform-bom-maven-plugin</artifactId>
<version>0.0.8</version>
<executions>
<execution>
<phase>process-resources</phase>
<goals>
<goal>flatten-platform-bom</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
17 changes: 17 additions & 0 deletions pom.xml
Expand Up @@ -15,6 +15,18 @@
<version>999-SNAPSHOT</version>
<packaging>pom</packaging>

<description>Quarkus - Kubernetes Native Java stack tailored for OpenJDK HotSpot and GraalVM</description>
<url>https://github.com/quarkusio/quarkus</url>

<developers>
<developer>
<id>quarkus</id>
<name>Quarkus Community</name>
<organization>Quarkus</organization>
<organizationUrl>https://quarkus.io</organizationUrl>
</developer>
</developers>

<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
Expand All @@ -30,6 +42,11 @@
<tag>HEAD</tag>
</scm>

<issueManagement>
<system>GitHub</system>
<url>https://github.com/quarkusio/quarkus/issues/</url>
</issueManagement>

<properties>
<graalvmHome>${env.GRAALVM_HOME}</graalvmHome>
<postgres.url>jdbc:postgresql:hibernate_orm_test</postgres.url>
Expand Down