This is an automated email from the ASF dual-hosted git repository.

bodewig pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ant-antlibs-props.git


The following commit(s) were added to refs/heads/master by this push:
     new a3495af  tweaks to ivy.xml and a template pom
a3495af is described below

commit a3495af9e9c441cb0f7185205d867539b579fa70
Author: Stefan Bodewig <[email protected]>
AuthorDate: Wed Jun 17 22:00:54 2026 +0200

    tweaks to ivy.xml and a template pom
---
 README.md            | 24 +++++++++++++++++++
 ivy.xml              |  1 -
 project-template.pom | 68 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 92 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md
new file mode 100644
index 0000000..d25c8d0
--- /dev/null
+++ b/README.md
@@ -0,0 +1,24 @@
+# Apache Props Antlibâ„¢
+
+## Overview
+
+This is a library of supplementary handlers for Apache Ant properties
+resolution.
+
+The types provided are instances of
+`org.apache.tools.ant.PropertyHelper.Delegate` and can be invoked
+using the `<propertyhelper>` task provided in Ant 1.8.0.
+
+For more information see the [docs](docs/index.html).
+
+## Building
+
+Running `ant antlib` will create the antlib in `build/lib`. Any
+version of Ant starting with 1.8.0 should work - some parts of the
+build used during the release process require Ant 1.10.x.
+
+The code itself should work with Java 1.4, it will compile with the
+javac target set to Java 8 but if you invoke Ant with
+`-Djavac.-source=1.4 -Djavac.-target=1.4`  (and use a JDK that is
+still willing to support 1.4 as target) you should be able to build
+for older versions of Java.
diff --git a/ivy.xml b/ivy.xml
index 469f074..a0cdb90 100644
--- a/ivy.xml
+++ b/ivy.xml
@@ -54,7 +54,6 @@
   </publications>
   <dependencies>
     <dependency org="org.apache.ant" name="ant" rev="1.8.0" 
conf="provided->default"/>
-    <dependency org="org.apache.ant" name="ant-launcher" rev="1.8.0" 
conf="provided->default"/>
     <dependency org="org.apache.ant" name="ant-antunit" rev="1.4.1" 
conf="test->default"/>
   </dependencies>
 </ivy-module>
diff --git a/project-template.pom b/project-template.pom
new file mode 100644
index 0000000..52a2c2b
--- /dev/null
+++ b/project-template.pom
@@ -0,0 +1,68 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+   Licensed to the Apache Software Foundation (ASF) under one or more
+   contributor license agreements. See the NOTICE file distributed with
+   this work for additional information regarding copyright ownership.
+   The ASF licenses this file to You under the Apache License, Version
+   2.0 (the "License"); you may not use this file except in compliance
+   with the License. You may obtain a copy of the License at
+
+   https://www.apache.org/licenses/LICENSE-2.0 Unless required by
+   applicable law or agreed to in writing, software distributed under the
+   License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
+   CONDITIONS OF ANY KIND, either express or implied. See the License for
+   the specific language governing permissions and limitations under the
+   License.
+  -->
+<!--
+   This POM has been created manually by the Ant Development Team. Please
+   contact us if you are not satisfied with the data contained in this
+   POM . URL : https://ant.apache.org
+  -->
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.ant</groupId>
+  <artifactId>ant-props</artifactId>
+  <packaging>jar</packaging>
+  <version>${artifact.version}</version>
+  <licenses>
+    <license>
+      <name>The Apache Software License, Version 2.0</name>
+      <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+  <organization>
+    <name>The Apache Software Foundation</name>
+    <url>https://www.apache.org/</url>
+  </organization>
+
+  <!--
+     Test doesn't work from maven, you have to fight with tricky classpath
+     issue to solve that See https://markmail.org/thread/6giwzqproxidcwyc
+     And https://markmail.org/thread/5bbknx6hm7liqvi6 (until it is solved, I
+     comment test setting)
+    -->
+  <properties>
+    <maven.test.skip>true</maven.test.skip>
+  </properties>
+
+
+  <build>
+    <sourceDirectory>src/main</sourceDirectory>
+  </build>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.ant</groupId>
+      <artifactId>ant</artifactId>
+      <version>1.8.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.ant</groupId>
+      <artifactId>ant-antunit</artifactId>
+      <version>1.4.1</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+</project>

Reply via email to