diff options
author | Andy Clement <aclement@pivotal.io> | 2020-04-20 21:39:31 -0700 |
---|---|---|
committer | Andy Clement <aclement@pivotal.io> | 2020-04-20 21:39:31 -0700 |
commit | d7216bd5f7070edccaa6455bad9e6b8b50284cab (patch) | |
tree | d441480832a2f3ffb117271f07ead1e6d817efb5 /build | |
parent | 322aa52b55c4dd2a89a6162809a99072e08f0932 (diff) | |
download | aspectj-d7216bd5f7070edccaa6455bad9e6b8b50284cab.tar.gz aspectj-d7216bd5f7070edccaa6455bad9e6b8b50284cab.zip |
Corrected links inside poms
Diffstat (limited to 'build')
-rw-r--r-- | build/pomsForRelease/README.txt | 1 | ||||
-rw-r--r-- | build/pomsForRelease/aspectjrt.pom | 32 | ||||
-rw-r--r-- | build/pomsForRelease/aspectjtools.pom | 34 | ||||
-rw-r--r-- | build/pomsForRelease/aspectjweaver.pom | 33 |
4 files changed, 100 insertions, 0 deletions
diff --git a/build/pomsForRelease/README.txt b/build/pomsForRelease/README.txt new file mode 100644 index 000000000..0270e0e73 --- /dev/null +++ b/build/pomsForRelease/README.txt @@ -0,0 +1 @@ +These are new for 1.9.6 onwards - these are used to create the final release artifacts. diff --git a/build/pomsForRelease/aspectjrt.pom b/build/pomsForRelease/aspectjrt.pom new file mode 100644 index 000000000..c1f690c9f --- /dev/null +++ b/build/pomsForRelease/aspectjrt.pom @@ -0,0 +1,32 @@ +<?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 new file mode 100644 index 000000000..9925c8247 --- /dev/null +++ b/build/pomsForRelease/aspectjtools.pom @@ -0,0 +1,34 @@ +<?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 new file mode 100644 index 000000000..8788685c1 --- /dev/null +++ b/build/pomsForRelease/aspectjweaver.pom @@ -0,0 +1,33 @@ +<?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> |