diff options
author | Alexander Kriegisch <Alexander@Kriegisch.name> | 2021-05-16 11:05:05 +0700 |
---|---|---|
committer | Alexander Kriegisch <Alexander@Kriegisch.name> | 2021-05-16 11:05:05 +0700 |
commit | 2c0079126c70d843e49efe626c9ac673a5054e27 (patch) | |
tree | 5c2a7f5cc39f573798b12a5ee8759c1c2fc01af0 /build/pomsForRelease | |
parent | fcb563dee0a426645cc9c1935869ac8e79f2426c (diff) | |
download | aspectj-2c0079126c70d843e49efe626c9ac673a5054e27.tar.gz aspectj-2c0079126c70d843e49efe626c9ac673a5054e27.zip |
Delete all release POM templates in 'build'
In order to keep developers from creating AspectJ releases manually or
using Ant script 'build/build.xml', get rid of all POM templates. This
step does not involve updating any build or release how-to documents or
any other clean-up work under 'build', but it is a first step and a
simple, implicit reminder that now we can build and release using Maven.
Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
Diffstat (limited to 'build/pomsForRelease')
-rw-r--r-- | build/pomsForRelease/README.txt | 1 | ||||
-rw-r--r-- | build/pomsForRelease/aspectjmatcher.pom | 33 | ||||
-rw-r--r-- | build/pomsForRelease/aspectjrt.pom | 32 | ||||
-rw-r--r-- | build/pomsForRelease/aspectjtools.pom | 34 | ||||
-rw-r--r-- | build/pomsForRelease/aspectjweaver.pom | 33 |
5 files changed, 0 insertions, 133 deletions
diff --git a/build/pomsForRelease/README.txt b/build/pomsForRelease/README.txt deleted file mode 100644 index 0270e0e73..000000000 --- a/build/pomsForRelease/README.txt +++ /dev/null @@ -1 +0,0 @@ -These are new for 1.9.6 onwards - these are used to create the final release artifacts. diff --git a/build/pomsForRelease/aspectjmatcher.pom b/build/pomsForRelease/aspectjmatcher.pom deleted file mode 100644 index fef415ac1..000000000 --- a/build/pomsForRelease/aspectjmatcher.pom +++ /dev/null @@ -1,33 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> - <modelVersion>4.0.0</modelVersion> - <groupId>org.aspectj</groupId> - <artifactId>aspectjmatcher</artifactId> - <packaging>jar</packaging> - <version>VERSION</version> - <name>AspectJ weaver</name> - <description>The AspectJ matcher includes the pointcut matching capabilities</description> - <url>https://www.eclipse.org/aspectj/</url> - - <licenses> - <license> - <name>Eclipse Public License - v 1.0</name> - <url>http://www.eclipse.org/legal/epl-v10.html</url> - <distribution>repo</distribution> - </license> - </licenses> - - <developers> - <developer> - <id>aclement</id> - <name>Andy Clement</name> - <email>aclement@vmware.com</email> - </developer> - </developers> - - <scm> - <url>https://github.com/eclipse/org.aspectj</url> - </scm> - -</project> diff --git a/build/pomsForRelease/aspectjrt.pom b/build/pomsForRelease/aspectjrt.pom deleted file mode 100644 index c1f690c9f..000000000 --- a/build/pomsForRelease/aspectjrt.pom +++ /dev/null @@ -1,32 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> - <modelVersion>4.0.0</modelVersion> - <groupId>org.aspectj</groupId> - <artifactId>aspectjrt</artifactId> - <packaging>jar</packaging> - <version>VERSION</version> - <name>AspectJ runtime</name> - <description>The runtime needed to execute a program using AspectJ</description> - <url>https://www.eclipse.org/aspectj/</url> - - <licenses> - <license> - <name>Eclipse Public License - v 1.0</name> - <url>http://www.eclipse.org/legal/epl-v10.html</url> - <distribution>repo</distribution> - </license> - </licenses> - - <developers> - <developer> - <id>aclement</id> - <name>Andy Clement</name> - <email>aclement@vmware.com</email> - </developer> - </developers> - - <scm> - <url>https://github.com/eclipse/org.aspectj</url> - </scm> -</project> diff --git a/build/pomsForRelease/aspectjtools.pom b/build/pomsForRelease/aspectjtools.pom deleted file mode 100644 index 9925c8247..000000000 --- a/build/pomsForRelease/aspectjtools.pom +++ /dev/null @@ -1,34 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> - <modelVersion>4.0.0</modelVersion> - <groupId>org.aspectj</groupId> - <artifactId>aspectjtools</artifactId> - <packaging>jar</packaging> - <version>VERSION</version> - <name>AspectJ tools</name> - <description>Tools from the AspectJ project</description> - <url>https://www.eclipse.org/aspectj/</url> - - <licenses> - <license> - <name>Eclipse Public License - v 1.0</name> - <url>http://www.eclipse.org/legal/epl-v10.html</url> - <distribution>repo</distribution> - </license> - </licenses> - - <developers> - <developer> - <id>aclement</id> - <name>Andy Clement</name> - <email>aclement@vmware.com</email> - </developer> - </developers> - - - <scm> - <url>https://github.com/eclipse/org.aspectj</url> - </scm> - -</project> diff --git a/build/pomsForRelease/aspectjweaver.pom b/build/pomsForRelease/aspectjweaver.pom deleted file mode 100644 index 8788685c1..000000000 --- a/build/pomsForRelease/aspectjweaver.pom +++ /dev/null @@ -1,33 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> - <modelVersion>4.0.0</modelVersion> - <groupId>org.aspectj</groupId> - <artifactId>aspectjweaver</artifactId> - <packaging>jar</packaging> - <version>VERSION</version> - <name>AspectJ weaver</name> - <description>The AspectJ weaver introduces advices to java classes</description> - <url>https://www.eclipse.org/aspectj/</url> - - <licenses> - <license> - <name>Eclipse Public License - v 1.0</name> - <url>http://www.eclipse.org/legal/epl-v10.html</url> - <distribution>repo</distribution> - </license> - </licenses> - - <developers> - <developer> - <id>aclement</id> - <name>Andy Clement</name> - <email>aclement@vmware.com</email> - </developer> - </developers> - - <scm> - <url>https://github.com/eclipse/org.aspectj</url> - </scm> - -</project> |