Skip to content

Commit

Permalink
Use 2.479 baseline
Browse files Browse the repository at this point in the history
  • Loading branch information
strangelookingnerd committed Nov 3, 2024
1 parent b090818 commit c0c16b3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,13 @@ jobs:
name: Coverage on Ubuntu
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
- name: Set up JDK 17 and Maven
uses: s4u/setup-[email protected]
with:
distribution: 'temurin'
java-distribution: 'temurin'
java-version: '17'
check-latest: true
cache: 'maven'
- name: Generate coverage with JaCoCo
run: mvn clean verify jacoco:prepare-agent test integration-test jacoco:report
run: mvn clean jacoco:prepare-agent test jacoco:report

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
Expand Down
12 changes: 8 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>4.88</version>
<version>5.2</version>
<relativePath />
</parent>

Expand All @@ -15,7 +15,9 @@
<packaging>hpi</packaging>

<name>Emoji Symbols API Plugin</name>
<url>https://github.com/jenkinsci/${project.artifactId}-plugin</url>
<description>Bundles Unicode emojis as symbols to be used by other plugins.</description>
<url>https://github.com/${gitHubRepo}</url>

<licenses>
<license>
<name>MIT License</name>
Expand All @@ -40,9 +42,10 @@

<properties>
<changelist>999999-SNAPSHOT</changelist>
<!-- https://www.jenkins.io/doc/developer/plugin-development/choosing-jenkins-baseline/ -->
<jenkins.version>2.440.3</jenkins.version>
<gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo>
<!-- https://www.jenkins.io/doc/developer/plugin-development/choosing-jenkins-baseline/ -->
<jenkins.baseline>2.479</jenkins.baseline>
<jenkins.version>${jenkins.baseline}.1</jenkins.version>
<spotless.check.skip>false</spotless.check.skip>
</properties>

Expand All @@ -52,6 +55,7 @@
<url>https://repo.jenkins-ci.org/public/</url>
</repository>
</repositories>

<pluginRepositories>
<pluginRepository>
<id>repo.jenkins-ci.org</id>
Expand Down

0 comments on commit c0c16b3

Please sign in to comment.