Skip to content

Commit 9de981f

Browse files
committed
ARIES-2165: Build esa-ant-task on Java 11, 17 and 21
1 parent ac5bb93 commit 9de981f

File tree

3 files changed

+22
-5
lines changed

3 files changed

+22
-5
lines changed

.github/workflows/esa-ant-task.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
strategy:
3232
fail-fast: false
3333
matrix:
34-
java: [ 8 ]
34+
java: [ 8, 11, 17, 21 ]
3535
os: [ ubuntu-latest ]
3636
name: JDK${{ matrix.java }} ${{ matrix.os }}
3737
runs-on: ${{ matrix.os }}

esa-ant-task/readme.txt esa-ant-task/README.md

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ Clone the project and then run `mvn clean install`, grab the jar and drop it you
77
# Sample build file
88

99
```xml
10-
1110
<?xml version="1.0" encoding="UTF-8"?>
1211
<!-- ======================================================================
1312

esa-ant-task/pom.xml

+21-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,30 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
Licensed to the Apache Software Foundation (ASF) under one
4+
or more contributor license agreements. See the NOTICE file
5+
distributed with this work for additional information
6+
regarding copyright ownership. The ASF licenses this file
7+
to you under the Apache License, Version 2.0 (the
8+
"License"); you may not use this file except in compliance
9+
with the License. You may obtain a copy of the License at
10+
11+
http://www.apache.org/licenses/LICENSE-2.0
12+
13+
Unless required by applicable law or agreed to in writing,
14+
software distributed under the License is distributed on an
15+
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
KIND, either express or implied. See the License for the
17+
specific language governing permissions and limitations
18+
under the License.
19+
-->
120
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
221
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
322
<modelVersion>4.0.0</modelVersion>
423

524
<parent>
625
<groupId>org.apache.aries</groupId>
726
<artifactId>parent</artifactId>
8-
<version>2.0.0</version>
27+
<version>2.1.2-SNAPSHOT</version>
928
<relativePath>../parent/pom.xml</relativePath>
1029
</parent>
1130

@@ -14,8 +33,7 @@
1433
<name>Aries ESA Ant Task</name>
1534
<description>Builds an esa (Enterprise Subsystem Archive) from the project for deployment to an aries server.</description>
1635
<properties>
17-
<ant.version>1.8.0</ant.version>
18-
<bnd.version>2.4.0</bnd.version>
36+
<ant.version>1.10.15</ant.version>
1937
</properties>
2038
<dependencies>
2139
<dependency>

0 commit comments

Comments
 (0)