Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/util.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ on:
pull_request:
paths:
- parent/**
- testsupport/**
- versioning/**
- util/**
- .github/workflows/util.yml
Expand Down Expand Up @@ -47,6 +48,9 @@ jobs:
- name: Build parent
shell: bash
run: mvn -V -U -e -B -ntp clean install -f parent
- name: Build testsupport
shell: bash
run: mvn -V -U -e -B -ntp -Dmaven.test.skip=true clean install -f testsupport
- name: Build versioning
shell: bash
run: mvn -V -U -e -B -ntp -Dmaven.test.skip=true clean install -f versioning
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/versioning.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ on:
pull_request:
paths:
- parent/**
- testsupport/**
- versioning/**
- .github/workflows/versioning.yml
push:
Expand All @@ -38,6 +39,17 @@ jobs:
steps:
- name: Git Checkout
uses: actions/checkout@v7
- name: Set up Java 8
uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: 8
- name: Build parent
shell: bash
run: mvn -V -U -e -B -ntp clean install -f parent
- name: Build testsupport
shell: bash
run: mvn -V -U -e -B -ntp -Dmaven.test.skip=true clean install -f testsupport
- name: Set up Java
uses: actions/setup-java@v5
with:
Expand Down
4 changes: 2 additions & 2 deletions util/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.aries</groupId>
<artifactId>parent</artifactId>
<version>3.0.0</version>
<version>3.0.1-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>

Expand Down Expand Up @@ -65,7 +65,7 @@
<org.apache.aries.versioning.plugin.version>0.3.2-SNAPSHOT</org.apache.aries.versioning.plugin.version>

<maven-javadoc-plugin.version>3.12.0</maven-javadoc-plugin.version>
<org.apache.aries.testsupport.unit.version>1.0.0</org.apache.aries.testsupport.unit.version>
<org.apache.aries.testsupport.unit.version>2.0.0-SNAPSHOT</org.apache.aries.testsupport.unit.version>
<org.eclipse.osgi.version>3.23.100</org.eclipse.osgi.version>
</properties>

Expand Down
4 changes: 2 additions & 2 deletions versioning/versioning-checker/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.aries</groupId>
<artifactId>parent</artifactId>
<version>3.0.0</version>
<version>3.0.1-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>

Expand Down Expand Up @@ -61,7 +61,7 @@

<asm.version>9.10.1</asm.version>
<maven-release-plugin.version>3.3.1</maven-release-plugin.version>
<org.apache.aries.testsupport.unit.version>1.0.0</org.apache.aries.testsupport.unit.version>
<org.apache.aries.testsupport.unit.version>2.0.0-SNAPSHOT</org.apache.aries.testsupport.unit.version>
<org.apache.aries.util.version>1.1.0</org.apache.aries.util.version>
</properties>

Expand Down
2 changes: 1 addition & 1 deletion versioning/versioning-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.aries</groupId>
<artifactId>parent</artifactId>
<version>3.0.0</version>
<version>3.0.1-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>

Expand Down
Loading