Skip to content

Commit

Permalink
Add SCM connection
Browse files Browse the repository at this point in the history
  • Loading branch information
stijn-dejongh committed Nov 20, 2024
1 parent c03f4b3 commit 16f199a
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 5 deletions.
25 changes: 25 additions & 0 deletions commons-kernel/pom.xml.releaseBackup
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?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"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>be.sddevelopment.commons</groupId>
<artifactId>code-utils</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>

<artifactId>commons-kernel</artifactId>

<properties>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<sonar.projectKey>sddevelopment-be_coding-utils:${project.artifactId}</sonar.projectKey>
<sonar.coverage.jacoco.xmlReportPaths>${jacoco.build.dir}/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths>
<jacoco.build.dir>${project.build.directory}/jacoco</jacoco.build.dir>
</properties>

</project>
15 changes: 10 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,13 @@
<url>https://maven.pkg.github.com/sddevelopment-be/coding-utils</url>
</repository>
</distributionManagement>

<scm>
<connection>scm:git:[email protected]:sddevelopment-be/coding-utils.git</connection>
<developerConnection>scm:git:[email protected]:sddevelopment-be/coding-utils.git</developerConnection>
<url>https://github.com/sddevelopment-be/coding-utils</url>
</scm>

<properties>
<sonar.organization>sddevelopment-be</sonar.organization>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
Expand All @@ -61,8 +68,6 @@

<lombok.version>1.18.32</lombok.version>
<rewrite.version>5.36.0</rewrite.version>

<sd.commons.version>${project.version}</sd.commons.version>
</properties>

<dependencyManagement>
Expand All @@ -71,17 +76,17 @@
<dependency>
<groupId>be.sddevelopment.commons</groupId>
<artifactId>commons</artifactId>
<version>${sd.commons.version}</version>
<version>1.0.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>be.sddevelopment.commons</groupId>
<artifactId>commons-kernel</artifactId>
<version>${sd.commons.version}</version>
<version>1.0.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>be.sddevelopment.commons</groupId>
<artifactId>commons-testing</artifactId>
<version>${sd.commons.version}</version>
<version>1.0.0-SNAPSHOT</version>
</dependency>

<!-- BEGIN UTIL SCOPE -->
Expand Down
21 changes: 21 additions & 0 deletions release.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#release configuration
#Wed Nov 20 07:27:30 CET 2024
completedPhase=map-development-versions
exec.additionalArguments=-P github
exec.snapshotReleasePluginAllowed=false
preparationGoals=clean verify
project.dev.be.sddevelopment.commons\:code-utils=1.0.1-SNAPSHOT
project.dev.be.sddevelopment.commons\:commons=1.0.1-SNAPSHOT
project.dev.be.sddevelopment.commons\:commons-kernel=1.0.1-SNAPSHOT
project.dev.be.sddevelopment.commons\:commons-testing=1.0.1-SNAPSHOT
project.rel.be.sddevelopment.commons\:code-utils=1.0.0
project.rel.be.sddevelopment.commons\:commons=1.0.0
project.rel.be.sddevelopment.commons\:commons-kernel=1.0.0
project.rel.be.sddevelopment.commons\:commons-testing=1.0.0
projectVersionPolicyId=default
pushChanges=true
remoteTagging=true
scm.commentPrefix=[maven-release-plugin]
scm.tag=code-utils-1.0.0
scm.tagNameFormat=@{project.artifactId}-@{project.version}
scm.url=scm\:git\:git\://github.com\:sddevelopment-be/coding-utils.git

0 comments on commit 16f199a

Please sign in to comment.