Skip to content

Commit

Permalink
feat: migration to generic v6.2.0 (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
grigoriev authored Jul 15, 2024
1 parent 25cbb99 commit 487d902
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 52 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/maven-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ jobs:
permissions:
contents: read
packages: write
env:
GITHUB_TOKEN: ${{ github.token }}
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Set up JDK and Maven
Expand Down Expand Up @@ -68,8 +70,6 @@ jobs:
run: cat /home/runner/.m2/settings.xml
- name: Build with Maven
run: mvn --batch-mode clean package
env:
FAIL_ON_CHECK_COMMANDS: 'true'
- name: Extract artefact version
id: artefact_version
run: echo "version=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)" >> $GITHUB_OUTPUT
Expand All @@ -79,5 +79,3 @@ jobs:
- name: Publish to GitHub Packages
if: ${{ !endsWith(steps.artefact_version.outputs.version, '-SNAPSHOT') && github.ref == 'refs/heads/main' }}
run: mvn --batch-mode deploy -P gpg-sign -P deploy-github-packages
env:
GITHUB_TOKEN: ${{ github.token }}
46 changes: 0 additions & 46 deletions .scripts/convert-readme.sh

This file was deleted.

14 changes: 12 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@
<name>SBB Polarion Team</name>
<email>polarion-opensource@sbb.ch</email>
<organization>SBB AG</organization>
<organizationUrl>http://www.sbb.ch</organizationUrl>
<organizationUrl>https://www.sbb.ch</organizationUrl>
</developer>
</developers>

<scm>
<connection>scm:git:git://github.com/SchweizerischeBundesbahnen/ch.sbb.polarion.extension.excel-importer.git</connection>
<developerConnection>scm:git:ssh://github.com/SchweizerischeBundesbahnen/ch.sbb.polarion.extension.excel-importer.git</developerConnection>
<url>http://github.com/SchweizerischeBundesbahnen/ch.sbb.polarion.extension.excel-importer/tree/main</url>
<url>https://github.com/SchweizerischeBundesbahnen/ch.sbb.polarion.extension.excel-importer/tree/main</url>
</scm>

<issueManagement>
Expand Down Expand Up @@ -69,6 +69,16 @@

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
</plugin>

<plugin>
<groupId>ch.sbb.maven.plugins</groupId>
<artifactId>markdown2html-maven-plugin</artifactId>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
Expand Down

0 comments on commit 487d902

Please sign in to comment.