Skip to content

Commit 9fd1b9e

Browse files
committed
[MAINTENANCE] Add versioning workflow
1 parent b850591 commit 9fd1b9e

File tree

3 files changed

+61
-12
lines changed

3 files changed

+61
-12
lines changed

.github/workflows/versioning.yml

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# Licensed under the Apache License, Version 2.0 (the "License");
2+
# you may not use this file except in compliance with the License.
3+
# You may obtain a copy of the License at
4+
#
5+
# http://www.apache.org/licenses/LICENSE-2.0
6+
#
7+
# Unless required by applicable law or agreed to in writing, software
8+
# distributed under the License is distributed on an "AS IS" BASIS,
9+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10+
# See the License for the specific language governing permissions and
11+
# limitations under the License.
12+
13+
name: Versioning - CI Build
14+
15+
on:
16+
pull_request:
17+
paths:
18+
- versioning/**
19+
- .github/workflows/versioning.yml
20+
push:
21+
branches:
22+
- 'trunk'
23+
24+
env:
25+
LC_ALL: en_US.UTF-8
26+
27+
jobs:
28+
JDKxx_Matrix:
29+
timeout-minutes: 10
30+
strategy:
31+
matrix:
32+
java: [ 8, 11 ]
33+
os: [ ubuntu-latest ]
34+
name: JDK${{ matrix.java }} ${{ matrix.os }}
35+
runs-on: ${{ matrix.os }}
36+
steps:
37+
- name: Git Checkout
38+
uses: actions/checkout@v4
39+
- name: Set up Java
40+
uses: actions/setup-java@v4
41+
with:
42+
distribution: 'temurin'
43+
java-version: ${{ matrix.java }}
44+
- name: Build
45+
shell: bash
46+
run: |
47+
mvn -U -e -B -ntp clean install -f versioning/pom.xml

versioning/versioning-checker/pom.xml

+12-5
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323

2424
<parent>
2525
<groupId>org.apache.aries</groupId>
26-
<artifactId>java5-parent</artifactId>
27-
<version>1.0.0</version>
26+
<artifactId>parent</artifactId>
27+
<version>2.1.1</version>
2828
<relativePath />
2929
</parent>
3030

@@ -46,7 +46,7 @@
4646
${project.artifactId};blueprint.graceperiod:=false
4747
</aries.osgi.symbolic.name>
4848
<aries.osgi.import>
49-
org.objectweb.asm*;version=3.2;resolution:=optional,
49+
org.objectweb.asm*;version="[9,10)";resolution:=optional,
5050
org.osgi.framework;version="[1.5,2)",
5151
org.slf4j;version="[1.5,2)",
5252
*
@@ -58,6 +58,7 @@
5858
org.apache.aries.versioning.utils;
5959
</aries.osgi.private.pkg>
6060
<lastReleaseVersion>0.2.0</lastReleaseVersion>
61+
<aries.skip.version.check>true</aries.skip.version.check>
6162
</properties>
6263

6364
<dependencies>
@@ -82,9 +83,15 @@
8283
</dependency>
8384
<dependency>
8485
<groupId>org.ow2.asm</groupId>
85-
<artifactId>asm-debug-all</artifactId>
86+
<artifactId>asm</artifactId>
8687
<optional>true</optional>
87-
<version>5.0.3</version>
88+
<version>9.6</version>
89+
</dependency>
90+
<dependency>
91+
<groupId>org.ow2.asm</groupId>
92+
<artifactId>asm-commons</artifactId>
93+
<optional>true</optional>
94+
<version>9.6</version>
8895
</dependency>
8996
<dependency>
9097
<groupId>org.osgi</groupId>

versioning/versioning-plugin/pom.xml

+2-7
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323

2424
<parent>
2525
<groupId>org.apache.aries</groupId>
26-
<artifactId>java5-parent</artifactId>
27-
<version>1.0.0</version>
26+
<artifactId>parent</artifactId>
27+
<version>2.1.1</version>
2828
<relativePath />
2929
</parent>
3030

@@ -46,11 +46,6 @@
4646
<artifactId>org.apache.aries.versioning.checker</artifactId>
4747
<version>0.3.2-SNAPSHOT</version>
4848
</dependency>
49-
<dependency>
50-
<groupId>org.ow2.asm</groupId>
51-
<artifactId>asm-debug-all</artifactId>
52-
<version>5.0.3</version>
53-
</dependency>
5449
<dependency>
5550
<groupId>org.osgi</groupId>
5651
<artifactId>org.osgi.core</artifactId>

0 commit comments

Comments
 (0)