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
alecharp committed Oct 18, 2022
1 parent 7210f58 commit 43406d8
Showing 1 changed file with 8 additions and 11 deletions.
19 changes: 8 additions & 11 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

<groupId>io.jenkins.pluginhealth.scoring</groupId>
<artifactId>plugin-health-scoring</artifactId>
<version>0.2.0-SNAPSHOT</version>
<version>0.2.0</version>

<name>Plugin Health Scoring</name>
<description>Build and provide health indicators on plugins of the Jenkins ecosystem</description>
Expand Down Expand Up @@ -66,7 +66,7 @@
<scm>
<connection>scm:git:https://github.com/jenkins-infra/plugin-health-scoring.git</connection>
<developerConnection>scm:git:[email protected]:jenkins-infra/plugin-health-scoring.git</developerConnection>
<tag>HEAD</tag>
<tag>v0.2.0</tag>
<url>https://github.com/jenkins-infra/plugin-health-scoring</url>
</scm>
<distributionManagement>
Expand Down Expand Up @@ -334,16 +334,13 @@
<phase>initialize</phase>
<configuration>
<tasks>
<property name="yarn.dest" value="${project.basedir}/.yarn/releases/yarn-${yarn-berry.version}.cjs"/>
<dirname file="${yarn.dest}" property="yarn.dest.dir"/>
<mkdir dir="${yarn.dest.dir}"/>
<get dest="${yarn.dest}"
src="https://repo.yarnpkg.com/${yarn-berry.version}/packages/yarnpkg-cli/bin/yarn.js"
usetimestamp="true"/>
<checksum algorithm="SHA-256" file="${yarn.dest}" property="${yarn-berry.sha256sum}"
verifyProperty="yarn.checksum.matches"/>
<property name="yarn.dest" value="${project.basedir}/.yarn/releases/yarn-${yarn-berry.version}.cjs" />
<dirname file="${yarn.dest}" property="yarn.dest.dir" />
<mkdir dir="${yarn.dest.dir}" />
<get dest="${yarn.dest}" src="https://repo.yarnpkg.com/${yarn-berry.version}/packages/yarnpkg-cli/bin/yarn.js" usetimestamp="true" />
<checksum algorithm="SHA-256" file="${yarn.dest}" property="${yarn-berry.sha256sum}" verifyProperty="yarn.checksum.matches" />
<condition property="yarn.checksum.matches.fail">
<equals arg1="${yarn.checksum.matches}" arg2="false"/>
<equals arg1="${yarn.checksum.matches}" arg2="false" />
</condition>
<fail if="yarn.checksum.matches.fail">Checksum error</fail>
</tasks>
Expand Down

0 comments on commit 43406d8

Please sign in to comment.