Skip to content

Commit

Permalink
[maven-release-plugin] Prepare release v0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-waldenberg committed Apr 11, 2023
1 parent e9ddeea commit 18bf27a
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 21 deletions.
9 changes: 4 additions & 5 deletions application/pom.xml
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
<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">
<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>
<name>Unigrid Hedgehog</name>
<groupId>org.unigrid.hedgehog</groupId>
<artifactId>hedgehog</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
<packaging>jar</packaging>
<parent>
<groupId>org.unigrid.hedgehog</groupId>
<artifactId>hedgehog-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -57,7 +56,7 @@
<dependency>
<groupId>org.unigrid.hedgehog</groupId>
<artifactId>hedgehog-common</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
</dependency>
<dependency>
<groupId>org.graalvm.sdk</groupId>
Expand Down
7 changes: 3 additions & 4 deletions common/pom.xml
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
<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">
<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>
<name>Unigrid Hedgehog Common</name>
<groupId>org.unigrid.hedgehog</groupId>
<artifactId>hedgehog-common</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
<packaging>jar</packaging>
<parent>
<groupId>org.unigrid.hedgehog</groupId>
<artifactId>hedgehog-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
13 changes: 6 additions & 7 deletions native-image/pom.xml
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
<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">
<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>
<name>Unigrid Hedgehog Native Image</name>
<groupId>org.unigrid.hedgehog</groupId>
<artifactId>hedgehog-native</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
<packaging>jar</packaging>
<parent>
<groupId>org.unigrid.hedgehog</groupId>
<artifactId>hedgehog-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -71,7 +70,7 @@
</goals>
<configuration>
<target>
<unzip src="${downloadLocation}${downloadName}" dest="${unzipLocation}"/>
<unzip src="${downloadLocation}${downloadName}" dest="${unzipLocation}" />
</target>
</configuration>
</execution>
Expand Down Expand Up @@ -124,12 +123,12 @@
<dependency>
<groupId>org.unigrid.hedgehog</groupId>
<artifactId>hedgehog</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
</dependency>
<dependency>
<groupId>org.unigrid.hedgehog</groupId>
<artifactId>hedgehog-common</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
<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">
<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>
<name>Unigrid Hedgehog Parent</name>
<groupId>org.unigrid.hedgehog</groupId>
<artifactId>hedgehog-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
<packaging>pom</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<surefireArgLine />
</properties>
<scm>
<developerConnection>scm:git:https://github.com/unigrid-project/hedgehog.git</developerConnection>
</scm>
<tag>v0.0.1</tag>
</scm>
<modules>
<module>application</module>
<module>common</module>
Expand Down Expand Up @@ -53,7 +53,7 @@
<tagNameFormat>v@{project.version}</tagNameFormat>
<autoVersionSubmodules>true</autoVersionSubmodules>
<dryRun>${dryRun}</dryRun>
<preparationGoals></preparationGoals>
<preparationGoals />
<pushChanges>false</pushChanges>
<scmDevelopmentCommitComment>@{prefix} Prepare for next development iteration</scmDevelopmentCommitComment>
<scmReleaseCommitComment>@{prefix} Prepare release @{releaseLabel}</scmReleaseCommitComment>
Expand Down

0 comments on commit 18bf27a

Please sign in to comment.