Browse Source

AspectJ 1.9.6 final bits

tags/V1_9_6
Andy Clement 3 years ago
parent
commit
3d7bc04288

+ 1
- 0
.gitignore View File

@@ -1,5 +1,6 @@
# Maven
target/
*.versionsBackup

# Files + directories created during build
aj-build/

+ 1
- 1
ajbrowser/pom.xml View File

@@ -6,7 +6,7 @@
<parent>
<groupId>org.aspectj</groupId>
<artifactId>aspectj-parent</artifactId>
<version>1.9.6.BUILD-SNAPSHOT</version>
<version>1.9.6</version>
<relativePath>..</relativePath>
</parent>


+ 1
- 1
ajde.core/pom.xml View File

@@ -6,7 +6,7 @@
<parent>
<groupId>org.aspectj</groupId>
<artifactId>aspectj-parent</artifactId>
<version>1.9.6.BUILD-SNAPSHOT</version>
<version>1.9.6</version>
<relativePath>..</relativePath>
</parent>


+ 1
- 1
ajde/pom.xml View File

@@ -6,7 +6,7 @@
<parent>
<groupId>org.aspectj</groupId>
<artifactId>aspectj-parent</artifactId>
<version>1.9.6.BUILD-SNAPSHOT</version>
<version>1.9.6</version>
<relativePath>..</relativePath>
</parent>


+ 1
- 1
ajdoc/pom.xml View File

@@ -6,7 +6,7 @@
<parent>
<groupId>org.aspectj</groupId>
<artifactId>aspectj-parent</artifactId>
<version>1.9.6.BUILD-SNAPSHOT</version>
<version>1.9.6</version>
<relativePath>..</relativePath>
</parent>


+ 1
- 1
asm/pom.xml View File

@@ -6,7 +6,7 @@
<parent>
<groupId>org.aspectj</groupId>
<artifactId>aspectj-parent</artifactId>
<version>1.9.6.BUILD-SNAPSHOT</version>
<version>1.9.6</version>
<relativePath>..</relativePath>
</parent>


+ 1
- 1
aspectjmatcher/pom.xml View File

@@ -7,7 +7,7 @@
<parent>
<groupId>org.aspectj</groupId>
<artifactId>aspectj-parent</artifactId>
<version>1.9.6.BUILD-SNAPSHOT</version>
<version>1.9.6</version>
</parent>

<artifactId>aspectjmatcher</artifactId>

+ 1
- 1
aspectjrt/pom.xml View File

@@ -7,7 +7,7 @@
<parent>
<groupId>org.aspectj</groupId>
<artifactId>aspectj-parent</artifactId>
<version>1.9.6.BUILD-SNAPSHOT</version>
<version>1.9.6</version>
</parent>

<artifactId>aspectjrt</artifactId>

+ 1
- 1
aspectjtools/pom.xml View File

@@ -7,7 +7,7 @@
<parent>
<groupId>org.aspectj</groupId>
<artifactId>aspectj-parent</artifactId>
<version>1.9.6.BUILD-SNAPSHOT</version>
<version>1.9.6</version>
</parent>

<artifactId>aspectjtools</artifactId>

+ 1
- 1
aspectjweaver/pom.xml View File

@@ -7,7 +7,7 @@
<parent>
<groupId>org.aspectj</groupId>
<artifactId>aspectj-parent</artifactId>
<version>1.9.6.BUILD-SNAPSHOT</version>
<version>1.9.6</version>
</parent>

<artifactId>aspectjweaver</artifactId>

+ 1
- 1
bcel-builder/pom.xml View File

@@ -12,7 +12,7 @@
<parent>
<groupId>org.aspectj</groupId>
<artifactId>aspectj-parent</artifactId>
<version>1.9.6.BUILD-SNAPSHOT</version>
<version>1.9.6</version>
<relativePath>..</relativePath>
</parent>


+ 1
- 1
bridge/pom.xml View File

@@ -6,7 +6,7 @@
<parent>
<groupId>org.aspectj</groupId>
<artifactId>aspectj-parent</artifactId>
<version>1.9.6.BUILD-SNAPSHOT</version>
<version>1.9.6</version>
<relativePath>..</relativePath>
</parent>


+ 1
- 1
build/pom.xml View File

@@ -6,7 +6,7 @@
<parent>
<groupId>org.aspectj</groupId>
<artifactId>aspectj-parent</artifactId>
<version>1.9.6.BUILD-SNAPSHOT</version>
<version>1.9.6</version>
<relativePath>..</relativePath>
</parent>


+ 33
- 0
build/pomsForRelease/aspectjmatcher.pom View File

@@ -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>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>

+ 2
- 2
build/usedForMavenUpload_release/aspectjrt.pom View File

@@ -8,7 +8,7 @@
<version>1.8.6</version>
<name>AspectJ runtime</name>
<description>The runtime needed to execute a program using AspectJ</description>
<url>http://www.aspectj.org</url>
<url>https://www.eclipse.org/aspectj/</url>

<licenses>
<license>
@@ -27,7 +27,7 @@
</developers>
<scm>
<url>http://dev.eclipse.org/viewcvs/index.cgi/org.aspectj/?root=Tools_Project</url>
<url>https://github.com/eclipse/org.aspectj</url>
</scm>

</project>

+ 2
- 2
build/usedForMavenUpload_release/aspectjtools.pom View File

@@ -8,7 +8,7 @@
<version>1.8.6</version>
<name>AspectJ tools</name>
<description>Tools from the AspectJ project</description>
<url>http://www.aspectj.org</url>
<url>https://www.eclipse.org/aspectj/</url>

<licenses>
<license>
@@ -27,7 +27,7 @@
</developers>
<scm>
<url>http://dev.eclipse.org/viewcvs/index.cgi/org.aspectj/?root=Tools_Project</url>
<url>https://github.com/eclipse/org.aspectj</url>
</scm>

</project>

+ 2
- 2
build/usedForMavenUpload_release/aspectjweaver.pom View File

@@ -8,7 +8,7 @@
<version>1.8.6</version>
<name>AspectJ weaver</name>
<description>The AspectJ weaver introduces advices to java classes</description>
<url>http://www.aspectj.org</url>
<url>https://www.eclipse.org/aspectj/</url>

<licenses>
<license>
@@ -27,7 +27,7 @@
</developers>
<scm>
<url>http://dev.eclipse.org/viewcvs/index.cgi/org.aspectj/?root=Tools_Project</url>
<url>https://github.com/eclipse/org.aspectj</url>
</scm>

</project>

+ 1
- 1
docs/dist/doc/README-196.html View File

@@ -63,7 +63,7 @@ execution(String Person.firstName())
A
</code></pre>

<p>Available: 1.9.6 available 22-Apr-2020</p>
<p>Available: 1.9.6 available 22-Jul-2020</p>

<br><br>


+ 1
- 1
docs/pom.xml View File

@@ -6,7 +6,7 @@
<parent>
<groupId>org.aspectj</groupId>
<artifactId>aspectj-parent</artifactId>
<version>1.9.6.BUILD-SNAPSHOT</version>
<version>1.9.6</version>
<relativePath>..</relativePath>
</parent>


+ 1
- 1
installer/pom.xml View File

@@ -7,7 +7,7 @@
<parent>
<groupId>org.aspectj</groupId>
<artifactId>aspectj-parent</artifactId>
<version>1.9.6.BUILD-SNAPSHOT</version>
<version>1.9.6</version>
</parent>

<artifactId>installer</artifactId>

+ 1
- 1
loadtime/pom.xml View File

@@ -6,7 +6,7 @@
<parent>
<groupId>org.aspectj</groupId>
<artifactId>aspectj-parent</artifactId>
<version>1.9.6.BUILD-SNAPSHOT</version>
<version>1.9.6</version>
<relativePath>..</relativePath>
</parent>


+ 1
- 1
org.aspectj.ajdt.core/pom.xml View File

@@ -6,7 +6,7 @@
<parent>
<groupId>org.aspectj</groupId>
<artifactId>aspectj-parent</artifactId>
<version>1.9.6.BUILD-SNAPSHOT</version>
<version>1.9.6</version>
<relativePath>..</relativePath>
</parent>


+ 1
- 1
org.aspectj.matcher/pom.xml View File

@@ -6,7 +6,7 @@
<parent>
<groupId>org.aspectj</groupId>
<artifactId>aspectj-parent</artifactId>
<version>1.9.6.BUILD-SNAPSHOT</version>
<version>1.9.6</version>
<relativePath>..</relativePath>
</parent>


+ 3
- 3
org.eclipse.jdt.core/pom.xml View File

@@ -6,7 +6,7 @@
<parent>
<groupId>org.aspectj</groupId>
<artifactId>aspectj-parent</artifactId>
<version>1.9.6.BUILD-SNAPSHOT</version>
<version>1.9.6</version>
<relativePath>..</relativePath>
</parent>

@@ -33,7 +33,7 @@
<configuration>
<groupId>org.aspectj</groupId>
<artifactId>org.eclipse.jdt.core</artifactId>
<version>1.9.6.BUILD-SNAPSHOT</version>
<version>1.9.6</version>
<packaging>jar</packaging>
<file>${basedir}/jdtcore-for-aspectj.jar</file>
<createChecksum>true</createChecksum>
@@ -49,7 +49,7 @@
<configuration>
<groupId>org.aspectj</groupId>
<artifactId>org.eclipse.jdt.core</artifactId>
<version>1.9.6.BUILD-SNAPSHOT</version>
<version>1.9.6</version>
<packaging>jar</packaging>
<file>${basedir}/jdtcore-for-aspectj-src.zip</file>
<createChecksum>true</createChecksum>

+ 2
- 2
pom.xml View File

@@ -5,14 +5,14 @@
<modelVersion>4.0.0</modelVersion>

<properties>
<revision>1.9.6.BUILD-SNAPSHOT</revision>
<revision>1.9.6</revision>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<groupId>org.aspectj</groupId>
<artifactId>aspectj-parent</artifactId>
<packaging>pom</packaging>
<version>1.9.6.BUILD-SNAPSHOT</version>
<version>1.9.6</version>
<name>AspectJ Parent Project</name>

<modules>

+ 1
- 1
run-all-junit-tests/pom.xml View File

@@ -6,7 +6,7 @@
<parent>
<groupId>org.aspectj</groupId>
<artifactId>aspectj-parent</artifactId>
<version>1.9.6.BUILD-SNAPSHOT</version>
<version>1.9.6</version>
<relativePath>..</relativePath>
</parent>


+ 1
- 1
runtime/pom.xml View File

@@ -6,7 +6,7 @@
<parent>
<groupId>org.aspectj</groupId>
<artifactId>aspectj-parent</artifactId>
<version>1.9.6.BUILD-SNAPSHOT</version>
<version>1.9.6</version>
<relativePath>..</relativePath>
</parent>


+ 1
- 1
taskdefs/pom.xml View File

@@ -6,7 +6,7 @@
<parent>
<groupId>org.aspectj</groupId>
<artifactId>aspectj-parent</artifactId>
<version>1.9.6.BUILD-SNAPSHOT</version>
<version>1.9.6</version>
<relativePath>..</relativePath>
</parent>


+ 1
- 1
testing-client/pom.xml View File

@@ -6,7 +6,7 @@
<parent>
<groupId>org.aspectj</groupId>
<artifactId>aspectj-parent</artifactId>
<version>1.9.6.BUILD-SNAPSHOT</version>
<version>1.9.6</version>
<relativePath>..</relativePath>
</parent>


+ 1
- 1
testing-drivers/pom.xml View File

@@ -6,7 +6,7 @@
<parent>
<groupId>org.aspectj</groupId>
<artifactId>aspectj-parent</artifactId>
<version>1.9.6.BUILD-SNAPSHOT</version>
<version>1.9.6</version>
<relativePath>..</relativePath>
</parent>


+ 1
- 1
testing-util/pom.xml View File

@@ -6,7 +6,7 @@
<parent>
<groupId>org.aspectj</groupId>
<artifactId>aspectj-parent</artifactId>
<version>1.9.6.BUILD-SNAPSHOT</version>
<version>1.9.6</version>
<relativePath>..</relativePath>
</parent>


+ 1
- 1
testing/pom.xml View File

@@ -6,7 +6,7 @@
<parent>
<groupId>org.aspectj</groupId>
<artifactId>aspectj-parent</artifactId>
<version>1.9.6.BUILD-SNAPSHOT</version>
<version>1.9.6</version>
<relativePath>..</relativePath>
</parent>


+ 1
- 1
tests/pom.xml View File

@@ -6,7 +6,7 @@
<parent>
<groupId>org.aspectj</groupId>
<artifactId>aspectj-parent</artifactId>
<version>1.9.6.BUILD-SNAPSHOT</version>
<version>1.9.6</version>
<relativePath>..</relativePath>
</parent>


+ 1
- 1
util/pom.xml View File

@@ -6,7 +6,7 @@
<parent>
<groupId>org.aspectj</groupId>
<artifactId>aspectj-parent</artifactId>
<version>1.9.6.BUILD-SNAPSHOT</version>
<version>1.9.6</version>
</parent>

<artifactId>util</artifactId>

+ 1
- 1
weaver/pom.xml View File

@@ -6,7 +6,7 @@
<parent>
<groupId>org.aspectj</groupId>
<artifactId>aspectj-parent</artifactId>
<version>1.9.6.BUILD-SNAPSHOT</version>
<version>1.9.6</version>
<relativePath>..</relativePath>
</parent>


Loading…
Cancel
Save