Add scm configuration to pom.xml

Change-Id: I3e0f2b84660d9446c9938739bfdf62118d2caf39
This commit is contained in:
jmarchel 2023-11-13 16:37:49 +01:00
parent 533558cc49
commit af426d9aa6

View File

@ -1,18 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
<project xmlns="http://maven.apache.org/POM/4.0.0"
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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.1.0</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>eu.nebulouscloud</groupId>
<artifactId>demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>demo</name>
<description>Demo project for Spring Boot</description>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
@ -23,9 +27,11 @@
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<properties>
<java.version>17</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
@ -41,6 +47,7 @@
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
@ -60,4 +67,10 @@
</plugin>
</plugins>
</build>
<scm>
<connection>scm:git:https://opendev.org/nebulous/library-template.git</connection>
<developerConnection>scm:git:git@opendev.org:29418/nebulous/library-template.git</developerConnection>
<url>https://opendev.org/nebulous/library-template</url>
</scm>
</project>