Skip to content

Commit cd74bc9

Browse files
authored
fix: include scm info (#613)
1 parent 211b4f9 commit cd74bc9

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

pom.xml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,11 @@
1515
<quarkus.version>3.1.0.Final</quarkus.version>
1616
<java-operator-sdk.version>4.3.5</java-operator-sdk.version>
1717
</properties>
18-
18+
<scm>
19+
<connection>:git:[email protected]:quarkiverse/quarkus-operator-sdk.git</connection>
20+
<developerConnection>scm:git:[email protected]:quarkiverse/quarkus-operator-sdk.git</developerConnection>
21+
<url>https://github.com/quarkiverse/quarkus-operator-sdk</url>
22+
</scm>
1923
<repositories>
2024
<repository>
2125
<id>central</id>
@@ -35,7 +39,6 @@
3539
</snapshots>
3640
</repository>
3741
</repositories>
38-
3942
<pluginRepositories>
4043
<pluginRepository>
4144
<id>central</id>
@@ -58,7 +61,6 @@
5861
</snapshots>
5962
</pluginRepository>
6063
</pluginRepositories>
61-
6264
<profiles>
6365
<profile>
6466
<id>default</id>
@@ -120,8 +122,7 @@
120122
<configuration>
121123
<skipTests>${native.surefire.skip}</skipTests>
122124
<systemPropertyVariables>
123-
<java.util.logging.manager>org.jboss.logmanager.LogManager
124-
</java.util.logging.manager>
125+
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
125126
<maven.home>${maven.home}</maven.home>
126127
</systemPropertyVariables>
127128
</configuration>
@@ -136,11 +137,8 @@
136137
</goals>
137138
<configuration>
138139
<systemPropertyVariables>
139-
<native.image.path>
140-
${project.build.directory}/${project.build.finalName}-runner
141-
</native.image.path>
142-
<java.util.logging.manager>org.jboss.logmanager.LogManager
143-
</java.util.logging.manager>
140+
<native.image.path>${project.build.directory}/${project.build.finalName}-runner</native.image.path>
141+
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
144142
<maven.home>${maven.home}</maven.home>
145143
</systemPropertyVariables>
146144
</configuration>
@@ -156,3 +154,4 @@
156154
</profile>
157155
</profiles>
158156
</project>
157+

0 commit comments

Comments
 (0)