Skip to content

Commit

Permalink
Add multi-release to release profile.
Browse files Browse the repository at this point in the history
  • Loading branch information
raphw committed Oct 16, 2024
1 parent 38b91ad commit c97a4a1
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ jobs:
architecture: x64
cache: maven
- name: Build project
run: ./mvnw jacoco:prepare-agent verify jacoco:report coveralls:report -DrepoToken=${{ secrets.coveralls }} -Pextras -Pchecks -Panalysis -Pintegration -Pchecksum-enforce
run: ./mvnw jacoco:prepare-agent verify jacoco:report coveralls:report -DrepoToken=${{ secrets.coveralls }} -Pextras -Pchecks -Panalysis -Pintegration -Pmulti-release -Pchecksum-enforce
release:
name: Release new version
runs-on: ubuntu-24.04
Expand Down
4 changes: 2 additions & 2 deletions byte-buddy-agent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@
</build>
</profile>
<profile>
<id>java8MultiRelease</id>
<id>multi-release</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
Expand All @@ -240,7 +240,7 @@
<version>${version.plugin.compiler}</version>
<executions>
<execution>
<id>java8MultiRelease</id>
<id>java8-multi-release</id>
<goals>
<goal>compile</goal>
</goals>
Expand Down
4 changes: 2 additions & 2 deletions byte-buddy-dep/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@
</build>
</profile>
<profile>
<id>java8MultiRelease</id>
<id>multi-release</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
Expand All @@ -370,7 +370,7 @@
<version>${version.plugin.compiler}</version>
<executions>
<execution>
<id>java8MultiRelease</id>
<id>java8-multi-release</id>
<goals>
<goal>compile</goal>
</goals>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
<version.junit>4.13.2</version.junit>
<version.mockito>2.28.2</version.mockito>
<version.plugin.clean>3.2.0</version.plugin.clean>
<version.plugin.bundle>5.1.7</version.plugin.bundle>
<version.plugin.bundle>5.1.9</version.plugin.bundle>
<version.plugin.compiler>3.10.1</version.plugin.compiler>
<version.plugin.install>3.0.1</version.plugin.install>
<version.plugin.deploy>3.0.0</version.plugin.deploy>
Expand Down Expand Up @@ -183,7 +183,7 @@
<version>${version.plugin.release}</version>
<configuration>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>extras,gpg,gradle-release</releaseProfiles>
<releaseProfiles>extras,gpg,gradle-release,multi-release</releaseProfiles>
<autoVersionSubmodules>true</autoVersionSubmodules>
<tagNameFormat>byte-buddy-@{project.version}</tagNameFormat>
</configuration>
Expand Down

0 comments on commit c97a4a1

Please sign in to comment.