Skip to content

Commit

Permalink
Merge pull request #33728 from gastaldi/scm
Browse files Browse the repository at this point in the history
Add `<scm>` info to Quarkiverse projects
  • Loading branch information
gastaldi authored Jun 7, 2023
2 parents 19ed30f + 12c717e commit dee218a
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<packaging>pom</packaging>
<scm>
<connection>scm:git:[email protected]:quarkiverse/quarkus-{extension.id}.git</connection>
<developerConnection>scm:git:[email protected]:quarkiverse/quarkus-{extension.id}.git</developerConnection>
<url>https://github.com/quarkiverse/quarkus-{extension.id}</url>
</scm>
<profiles>
<profile>
<id>it</id>
Expand All @@ -17,4 +22,4 @@
</modules>
</profile>
</profiles>
</project>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public enum LayoutType {

public static final String DEFAULT_QUARKIVERSE_PARENT_GROUP_ID = "io.quarkiverse";
public static final String DEFAULT_QUARKIVERSE_PARENT_ARTIFACT_ID = "quarkiverse-parent";
public static final String DEFAULT_QUARKIVERSE_PARENT_VERSION = "13";
public static final String DEFAULT_QUARKIVERSE_PARENT_VERSION = "15";
public static final String DEFAULT_QUARKIVERSE_NAMESPACE_ID = "quarkus-";
public static final String DEFAULT_QUARKIVERSE_GUIDE_URL = "https://quarkiverse.github.io/quarkiverse-docs/%s/dev/";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.quarkiverse</groupId>
<artifactId>quarkiverse-parent</artifactId>
<version>13</version>
<version>15</version>
</parent>
<groupId>io.quarkiverse.my-quarkiverse-ext</groupId>
<artifactId>quarkus-my-quarkiverse-ext-parent</artifactId>
Expand All @@ -17,6 +17,11 @@
<module>runtime</module>
<module>docs</module>
</modules>
<scm>
<connection>scm:git:[email protected]:quarkiverse/quarkus-my-quarkiverse-ext.git</connection>
<developerConnection>scm:git:[email protected]:quarkiverse/quarkus-my-quarkiverse-ext.git</developerConnection>
<url>https://github.com/quarkiverse/quarkus-my-quarkiverse-ext</url>
</scm>
<properties>
<compiler-plugin.version>3.11.0</compiler-plugin.version>
<maven.compiler.release>11</maven.compiler.release>
Expand Down

0 comments on commit dee218a

Please sign in to comment.