Skip to content
Snippets Groups Projects
Commit 210b441b authored by OZGCloud's avatar OZGCloud
Browse files

release version 1.7.0

parent 4eaca4c0
No related branches found
No related tags found
No related merge requests found
......@@ -30,13 +30,13 @@
<parent>
<groupId>de.itvsh.kop.common</groupId>
<artifactId>kop-common-parent</artifactId>
<version>1.6.0</version>
<version>1.6.2</version>
<relativePath />
</parent>
<groupId>de.itvsh.ozg.mail</groupId>
<artifactId>mail-service</artifactId>
<version>1.7.0-SNAPSHOT</version>
<version>1.7.0</version>
<name>KOP Vorgang Manager Mail Service</name>
<properties>
......
......@@ -29,7 +29,7 @@
<parent>
<groupId>de.itvsh.kop.common</groupId>
<artifactId>kop-common-parent</artifactId>
<version>1.5.0</version>
<version>1.6.2</version>
<relativePath />
</parent>
......@@ -37,11 +37,11 @@
<artifactId>notification-manager</artifactId>
<name>KOP Notification Manager</name>
<version>1.7.0-SNAPSHOT</version>
<version>1.7.0</version>
<properties>
<user-manager-interface.version>1.1.0</user-manager-interface.version>
<kop.license.version>1.3.0</kop.license.version>
<kop.license.version>1.6.0</kop.license.version>
</properties>
<dependencies>
......
......@@ -3,14 +3,14 @@
<parent>
<groupId>de.itvsh.kop.common</groupId>
<artifactId>kop-common-dependencies</artifactId>
<version>1.5.0</version>
<version>1.6.2</version>
<relativePath/>
</parent>
<groupId>de.itvsh.ozg.pluto</groupId>
<artifactId>pluto-command</artifactId>
<name>Command Manager</name>
<version>1.7.0-SNAPSHOT</version>
<version>1.7.0</version>
<dependencies>
<dependency>
......
......@@ -30,13 +30,13 @@
<parent>
<groupId>de.itvsh.kop.common</groupId>
<artifactId>kop-common-dependencies</artifactId>
<version>1.5.0</version>
<version>1.6.2</version>
<relativePath/>
</parent>
<groupId>de.itvsh.ozg.pluto</groupId>
<artifactId>pluto-interface</artifactId>
<version>1.7.0-SNAPSHOT</version>
<version>1.7.0</version>
<name>KOP Vorgang Manager gRPC Interface</name>
<description>Interface (gRPC) for Pluto Server</description>
......@@ -49,7 +49,7 @@
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<kop.license.version>1.3.0</kop.license.version>
<kop.license.version>1.6.0</kop.license.version>
</properties>
<dependencyManagement>
......
......@@ -30,13 +30,13 @@
<parent>
<groupId>de.itvsh.kop.common</groupId>
<artifactId>kop-common-parent</artifactId>
<version>1.6.0</version>
<version>1.6.2</version>
<relativePath />
</parent>
<groupId>de.itvsh.ozg.pluto</groupId>
<artifactId>pluto-server</artifactId>
<version>1.7.0-SNAPSHOT</version>
<version>1.7.0</version>
<name>KOP Vorgang Manager (Pluto) Server</name>
<description>Server Implementierung des VorgangManagers (Pluto)</description>
......@@ -49,7 +49,7 @@
<kop.license.version>1.3.0</kop.license.version>
<kop.zufi.api.version>0.5.0</kop.zufi.api.version>
<user-manager-interface.version>1.6.0-SNAPSHOT</user-manager-interface.version>
<user-manager-interface.version>1.6.0</user-manager-interface.version>
<zip.version>2.11.1</zip.version>
<jsoup.version>1.15.3</jsoup.version>
......
......@@ -30,14 +30,14 @@
<parent>
<groupId>de.itvsh.kop.common</groupId>
<artifactId>kop-common-dependencies</artifactId>
<version>1.5.0</version>
<version>1.6.2</version>
<relativePath />
</parent>
<groupId>de.itvsh.ozg.pluto</groupId>
<artifactId>pluto-utils</artifactId>
<name>KOP Vorgang Manager (Pluto) Utils</name>
<version>1.7.0-SNAPSHOT</version>
<version>1.7.0</version>
<properties>
<pluto.version>1.3.1</pluto.version>
......
......@@ -29,7 +29,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>de.itvsh.ozg</groupId>
<artifactId>pluto</artifactId>
<version>1.7.0-SNAPSHOT</version>
<version>1.7.0</version>
<name>Pluto Parent</name>
<packaging>pom</packaging>
......
#!/bin/sh
if [ "$#" -ne 1 ]; then
echo "Aufruf: release-erstellen.sh JA"
echo "Als Parameter bitte 'JA' eintragen zur Sicherheit"
exit 1
fi
## alle -SNAPSHOT in pom.xmls entfernen
find . -name pom.xml -exec sed -i 's/-SNAPSHOT//g' {} +
## release version auslesen
NEWVERSION=$(xmlstarlet sel -N w="http://maven.apache.org/POM/4.0.0" -t -v '//w:project/w:version' -n pom.xml)
echo
echo "NEXT STEPS:"
echo "***********"
echo "Änderungen prüfen"
echo "git commit -a -m 'release version "$NEWVERSION"'"
echo "git push"
echo "git tag "$NEWVERSION
echo "git push --tags"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment