Skip to content

Commit

Permalink
[maven-release-plugin] prepare release v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dabico committed Sep 12, 2024
1 parent b00b3d2 commit a450cc2
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ following dependency in your Maven project:
<dependency>
<groupId>ch.usi.si.seart</groupId>
<artifactId>jcloc</artifactId>
<version>0.1.0</version>
<version>0.2.0</version>
</dependency>
```

Expand Down
28 changes: 14 additions & 14 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>ch.usi.si.seart</groupId>
<artifactId>jcloc</artifactId>
<version>0.2.0-SNAPSHOT</version>
<version>0.2.0</version>
<packaging>jar</packaging>

<name>${project.groupId}:${project.artifactId}</name>
Expand Down Expand Up @@ -35,7 +35,7 @@
</developers>

<scm>
<tag>HEAD</tag>
<tag>v0.2.0</tag>
<url>https://github.com/seart-group/jcloc/tree/master</url>
<connection>scm:git:https://github.com/seart-group/jcloc.git</connection>
<developerConnection>scm:git:[email protected]:seart-group/jcloc.git</developerConnection>
Expand Down Expand Up @@ -287,20 +287,20 @@
<configuration>
<target>
<exec executable="curl" dir="${project.build.outputDirectory}">
<arg value="-s"/>
<arg value="-L"/>
<arg value="${cloc.url}/releases/download/v${cloc.version}/cloc-${cloc.version}.exe"/>
<arg value="-o"/>
<arg value="cloc.exe"/>
<arg value="-L"/>
<arg value="${cloc.url}/releases/download/v${cloc.version}/cloc-${cloc.version}.pl"/>
<arg value="-o"/>
<arg value="cloc.pl"/>
<arg value="-s" />
<arg value="-L" />
<arg value="${cloc.url}/releases/download/v${cloc.version}/cloc-${cloc.version}.exe" />
<arg value="-o" />
<arg value="cloc.exe" />
<arg value="-L" />
<arg value="${cloc.url}/releases/download/v${cloc.version}/cloc-${cloc.version}.pl" />
<arg value="-o" />
<arg value="cloc.pl" />
</exec>
<exec executable="chmod" dir="${project.build.outputDirectory}">
<arg value="+x"/>
<arg value="cloc.exe"/>
<arg value="cloc.pl"/>
<arg value="+x" />
<arg value="cloc.exe" />
<arg value="cloc.pl" />
</exec>
</target>
</configuration>
Expand Down

0 comments on commit a450cc2

Please sign in to comment.