Commit 3bbfa2e 1 parent 62fca6e commit 3bbfa2e Copy full SHA for 3bbfa2e
File tree 4 files changed +54
-5
lines changed
4 files changed +54
-5
lines changed Original file line number Diff line number Diff line change
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 : JMX - CI Build
14
+
15
+ on :
16
+ pull_request :
17
+ paths :
18
+ - testsupport/**
19
+ - blueprint/**
20
+ - .github/workflows/blueprint.yml
21
+ push :
22
+ branches :
23
+ - ' trunk'
24
+
25
+ env :
26
+ LC_ALL : en_US.UTF-8
27
+
28
+ jobs :
29
+ JDKxx_Matrix :
30
+ strategy :
31
+ matrix :
32
+ java : [ 8 ]
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 testsupport/pom.xml
48
+ mvn -U -e -B -ntp clean install -f blueprint/pom.xml
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ name: JMX - CI Build
15
15
on :
16
16
pull_request :
17
17
paths :
18
+ - testsupport/**
18
19
- jmx/**
19
20
- .github/workflows/jmx.yml
20
21
push :
Original file line number Diff line number Diff line change 24
24
<parent >
25
25
<groupId >org.apache.aries</groupId >
26
26
<artifactId >parent</artifactId >
27
- <version >2.0.1 </version >
27
+ <version >2.1.0 </version >
28
28
<relativePath >../../parent/pom.xml</relativePath >
29
29
</parent >
30
30
45
45
46
46
<properties >
47
47
<blueprint .api.dev.version>1.0.2-SNAPSHOT</blueprint .api.dev.version>
48
- <blueprint .core.dev.version>1.10.2 -SNAPSHOT</blueprint .core.dev.version>
49
- <blueprint .cm.dev.version>1.3.2 -SNAPSHOT</blueprint .cm.dev.version>
50
- <blueprint .parser.dev.version>1.6.1 -SNAPSHOT</blueprint .parser.dev.version>
48
+ <blueprint .core.dev.version>1.10.4 -SNAPSHOT</blueprint .core.dev.version>
49
+ <blueprint .cm.dev.version>1.3.3 -SNAPSHOT</blueprint .cm.dev.version>
50
+ <blueprint .parser.dev.version>1.6.2 -SNAPSHOT</blueprint .parser.dev.version>
51
51
<blueprint .authz.dev.version>1.0.1-SNAPSHOT</blueprint .authz.dev.version>
52
52
<blueprint .spring.dev.version>1.0.0-SNAPSHOT</blueprint .spring.dev.version>
53
53
<blueprint .spring.extender.dev.version>1.0.0-SNAPSHOT</blueprint .spring.extender.dev.version>
Original file line number Diff line number Diff line change 43
43
44
44
<properties >
45
45
<exam .version>4.10.0</exam .version>
46
- <url .version>2.2.0 </url .version>
46
+ <url .version>2.5.3 </url .version>
47
47
48
48
<blueprint .api.version>${blueprint.api.dev.version} </blueprint .api.version>
49
49
<blueprint .core.version>${blueprint.core.dev.version} </blueprint .core.version>
You can’t perform that action at this time.
0 commit comments