Compare commits

..

No commits in common. "703e049d573cd98df2bfe2726d4a34f218909c5c" and "9b9ec7dd392bbe6331ed990660c66a33ddff8fc0" have entirely different histories.

25
pom.xml
View file

@ -1,9 +1,10 @@
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<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>
<groupId>de.rpr</groupId>
<artifactId>ddnsclient</artifactId>
<version>1.0.0</version>
<version>1.0.0-SNAPSHOT</version>
<properties>
<compiler-plugin.version>3.13.0</compiler-plugin.version>
@ -19,18 +20,18 @@
<assertj.version>3.26.3</assertj.version>
<dnsjava.version>3.6.2</dnsjava.version>
<jib.version>3.4.4</jib.version>
<docker.repo.username />
<docker.repo.password />
<docker.repo.username/>
<docker.repo.password/>
<maven-scm-plugin.version>2.1.0</maven-scm-plugin.version>
<maven-release-plugin.version>3.1.1</maven-release-plugin.version>
<project.scm.id>git-azw27-de</project.scm.id>
</properties>
<scm>
<connection>scm:git:https://git.azw27.de/ryan_harg/ddns-client.git</connection>
<developerConnection>scm:git:https://git.azw27.de/ryan_harg/ddns-client.git</developerConnection>
<tag>v1.0.0</tag>
</scm>
<connection>scm:git:ssh://git@git.azw27.de:2222/ryan_harg/ddns-client.git</connection>
<developerConnection>scm:git:ssh://git@git.azw27.de:2222/ryan_harg/ddns-client.git</developerConnection>
<url>https://git.azw27.de/ryan_harg/ddns-client</url>
</scm>
<dependencyManagement>
<dependencies>
@ -182,6 +183,14 @@
</container>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-plugin</artifactId>
<version>${maven-scm-plugin.version}</version>
<configuration>
<connectionType>developerConnection</connectionType>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>