This is an automated email from the ASF dual-hosted git repository.
asf-gitbox-commits pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ant-antlibs-cyclonedx.git
The following commit(s) were added to refs/heads/main by this push:
new e15c591 POM with dependencies
e15c591 is described below
commit e15c591b4682794a5b54973405465ad4996595f6
Author: Stefan Bodewig <[email protected]>
AuthorDate: Fri May 22 22:39:48 2026 +0200
POM with dependencies
---
project-template.pom | 79 ++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 79 insertions(+)
diff --git a/project-template.pom b/project-template.pom
new file mode 100644
index 0000000..82d8c3d
--- /dev/null
+++ b/project-template.pom
@@ -0,0 +1,79 @@
+<?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-cyclonedx</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>
+ <properties>
+ <maven.test.skip>true</maven.test.skip>
+ <maven.compile.source>8</maven.compile.source>
+ <maven.compile.target>8</maven.compile.target>
+ </properties>
+ <build>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>${maven.compile.source}</source>
+ <target>${maven.compile.target}</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+ <sourceDirectory>src/main</sourceDirectory>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant</artifactId>
+ <version>1.10.17</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.cyclonedx</groupId>
+ <artifactId>cyclonedx-core-java</artifactId>
+ <version>12.2.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>