Browse Source

1.9.7 milestone 1 published

tags/java16-add-opens
Andy Clement 3 years ago
parent
commit
b20196924e

+ 1
- 1
ajbrowser/pom.xml View File

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

<artifactId>ajbrowser</artifactId>

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

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

<artifactId>ajde.core</artifactId>

+ 1
- 1
ajde/pom.xml View File

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

<artifactId>ajde</artifactId>

+ 1
- 1
ajdoc/pom.xml View File

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

<artifactId>ajdoc</artifactId>

+ 1
- 1
asm/pom.xml View File

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

<artifactId>asm</artifactId>

+ 1
- 1
aspectjmatcher/pom.xml View File

@@ -7,7 +7,7 @@
<parent>
<groupId>org.aspectj</groupId>
<artifactId>aspectj-parent</artifactId>
<version>1.9.7.BUILD-SNAPSHOT</version>
<version>1.9.7.M1</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.7.BUILD-SNAPSHOT</version>
<version>1.9.7.M1</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.7.BUILD-SNAPSHOT</version>
<version>1.9.7.M1</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.7.BUILD-SNAPSHOT</version>
<version>1.9.7.M1</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.7.BUILD-SNAPSHOT</version>
<version>1.9.7.M1</version>
</parent>

</project>

+ 1
- 1
bridge/pom.xml View File

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

<artifactId>bridge</artifactId>

+ 19
- 9
build/build.xml View File

@@ -855,40 +855,50 @@ ant -propertyfile XXX publishtomaven


<target name="publishtomaven_milestone" depends="maven.init">
<property name="suffix" value="1.9.0.BETA-6"/>
<property name="build.root" value="/Users/aclement/gits/org.aspectj/aj-build"/>
<property name="build.root" value="/Users/aclement/gits/org.aspectj"/>
<property name="suffix" value="1.9.7.M1"/>
<property name="adjusted.release.type" value="milestone"/>
<property name="maven.central.repository" value="s3://maven.springframework.org/${adjusted.release.type}"/>
<property name="bin.jars.folder" value="${build.root}/dist/tools/lib"/>
<property name="src.jars.folder" value="${build.root}/src"/>

<!-- ASPECTJRT -->
<maven:deploy file="${bin.jars.folder}/aspectjrt.jar">
<maven:deploy file="${build.root}/aspectjrt/target/aspectjrt-${suffix}.jar">
<remoteRepository url="${maven.central.repository}">
<authentication username="${accessKey}" passphrase="${secretKey}"/>
</remoteRepository>
<pom file="usedForMavenUpload_milestone/aspectjrt.pom"/>
<attach file="${src.jars.folder}/aspectjrt${suffix}-src.jar" classifier="sources"/>
<attach file="${build.root}/aspectjrt/target/aspectjrt-${suffix}-sources.jar" classifier="sources"/>
</maven:deploy>

<!-- ASPECTJTOOLS -->
<maven:deploy file="${bin.jars.folder}/aspectjtools.jar">
<maven:deploy file="${build.root}/aspectjtools/target/aspectjtools-${suffix}.jar">
<remoteRepository url="${maven.central.repository}">
<authentication username="${accessKey}" passphrase="${secretKey}"/>
</remoteRepository>
<pom file="usedForMavenUpload_milestone/aspectjtools.pom"/>
<attach file="${src.jars.folder}/aspectjtools${suffix}-src.jar" classifier="sources"/>
<attach file="${build.root}/aspectjtools/target/aspectjtools-${suffix}-sources.jar" classifier="sources"/>
</maven:deploy>

<!-- ASPECTJWEAVER -->
<maven:deploy file="${bin.jars.folder}/aspectjweaver.jar">
<maven:deploy file="${build.root}/aspectjweaver/target/aspectjweaver-${suffix}.jar">
<remoteRepository url="${maven.central.repository}">
<authentication username="${accessKey}" passphrase="${secretKey}"/>
</remoteRepository>
<pom file="usedForMavenUpload_milestone/aspectjweaver.pom"/>
<attach file="${src.jars.folder}/aspectjweaver${suffix}-src.jar" classifier="sources"/>
<attach file="${build.root}/aspectjweaver/target/aspectjweaver-${suffix}-sources.jar" classifier="sources"/>
</maven:deploy>
<!-- ASPECTJMATCHER -->
<maven:deploy file="${build.root}/aspectjmatcher/target/aspectjmatcher-${suffix}.jar">
<remoteRepository url="${maven.central.repository}">
<authentication username="${accessKey}" passphrase="${secretKey}"/>
</remoteRepository>
<pom file="usedForMavenUpload_milestone/aspectjmatcher.pom"/>
<attach file="${build.root}/aspectjmatcher/target/aspectjmatcher-${suffix}-sources.jar" classifier="sources"/>
</maven:deploy>

</target>

<target name="publishtomaven_release" depends="maven.init">

+ 1
- 1
build/pom.xml View File

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

<artifactId>build</artifactId>

+ 25
- 0
build/usedForMavenUpload_milestone/aspectjmatcher.pom View File

@@ -0,0 +1,25 @@
<?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>1.9.7.M1</version>
<name>AspectJ matcher</name>
<description>The AspectJ matcher can be used for matching pointcuts</description>
<url>http://www.aspectj.org</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>

<scm>
<url>http://dev.eclipse.org/viewcvs/index.cgi/org.aspectj/?root=Tools_Project</url>
</scm>

</project>

+ 1
- 1
build/usedForMavenUpload_milestone/aspectjrt.pom View File

@@ -5,7 +5,7 @@
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<packaging>jar</packaging>
<version>1.9.0.RC4</version>
<version>1.9.7.M1</version>
<name>AspectJ runtime</name>
<description>The runtime needed to execute a program using AspectJ</description>
<url>http://www.aspectj.org</url>

+ 1
- 1
build/usedForMavenUpload_milestone/aspectjtools.pom View File

@@ -5,7 +5,7 @@
<groupId>org.aspectj</groupId>
<artifactId>aspectjtools</artifactId>
<packaging>jar</packaging>
<version>1.9.0.RC4</version>
<version>1.9.7.M1</version>
<name>AspectJ tools</name>
<description>Tools from the AspectJ project</description>
<url>http://www.aspectj.org</url>

+ 1
- 1
build/usedForMavenUpload_milestone/aspectjweaver.pom View File

@@ -5,7 +5,7 @@
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<packaging>jar</packaging>
<version>1.9.0.RC4</version>
<version>1.9.7.M1</version>
<name>AspectJ weaver</name>
<description>The AspectJ weaver introduces advices to java classes</description>
<url>http://www.aspectj.org</url>

+ 1
- 1
docs/pom.xml View File

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

<artifactId>docs</artifactId>

+ 1
- 1
installer/pom.xml View File

@@ -7,7 +7,7 @@
<parent>
<groupId>org.aspectj</groupId>
<artifactId>aspectj-parent</artifactId>
<version>1.9.7.BUILD-SNAPSHOT</version>
<version>1.9.7.M1</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.7.BUILD-SNAPSHOT</version>
<version>1.9.7.M1</version>
</parent>

<artifactId>loadtime</artifactId>

+ 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.7.BUILD-SNAPSHOT</version>
<version>1.9.7.M1</version>
</parent>

<artifactId>org.aspectj.ajdt.core</artifactId>

+ 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.7.BUILD-SNAPSHOT</version>
<version>1.9.7.M1</version>
</parent>

<artifactId>org.aspectj.matcher</artifactId>

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

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

<artifactId>org.eclipse.jdt.core</artifactId>

+ 2
- 2
pom.xml View File

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

<properties>
<revision>1.9.6</revision>
<revision>1.9.7.M1</revision>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<groupId>org.aspectj</groupId>
<artifactId>aspectj-parent</artifactId>
<packaging>pom</packaging>
<version>1.9.7.BUILD-SNAPSHOT</version>
<version>1.9.7.M1</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.7.BUILD-SNAPSHOT</version>
<version>1.9.7.M1</version>
</parent>

<artifactId>run-all-junit-tests</artifactId>

+ 1
- 1
runtime/pom.xml View File

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

<artifactId>runtime</artifactId>

+ 1
- 1
taskdefs/pom.xml View File

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

<artifactId>taskdefs</artifactId>

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

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

<artifactId>testing-client</artifactId>

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

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

<artifactId>testing-drivers</artifactId>

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

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

<artifactId>testing-util</artifactId>

+ 1
- 1
testing/pom.xml View File

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

<artifactId>testing</artifactId>

+ 1
- 1
tests/pom.xml View File

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

<artifactId>tests</artifactId>

+ 1
- 1
util/pom.xml View File

@@ -6,7 +6,7 @@
<parent>
<groupId>org.aspectj</groupId>
<artifactId>aspectj-parent</artifactId>
<version>1.9.7.BUILD-SNAPSHOT</version>
<version>1.9.7.M1</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.7.BUILD-SNAPSHOT</version>
<version>1.9.7.M1</version>
</parent>

<artifactId>weaver</artifactId>

Loading…
Cancel
Save