Browse Source

various polish to previously mavenized projects to support newer ones

tags/V1_9_3RC1
Andy Clement 5 years ago
parent
commit
b5a9f23c80
5 changed files with 53 additions and 9 deletions
  1. 17
    0
      ajde.core/pom.xml
  2. 8
    4
      org.eclipse.jdt.core/pom.xml
  3. 7
    0
      testing-util/pom.xml
  4. 17
    0
      testing/pom.xml
  5. 4
    5
      util/pom.xml

+ 17
- 0
ajde.core/pom.xml View File

@@ -41,4 +41,21 @@
<version>${project.version}</version>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.2</version>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

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

@@ -20,15 +20,19 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<executions>
<execution>
<id>default-install</id>
<phase>none</phase>
</execution>
<execution>
<id>org.aspectj:jdtcore</id>
<id>org.aspectj:org.eclipse.jdt.core</id>
<phase>verify</phase>
<goals>
<goal>install-file</goal>
</goals>
<configuration>
<groupId>org.aspectj</groupId>
<artifactId>jdtcore</artifactId>
<artifactId>org.eclipse.jdt.core</artifactId>
<version>1.9.3.BUILD-SNAPSHOT</version>
<packaging>jar</packaging>
<file>${basedir}/jdtcore-for-aspectj.jar</file>
@@ -37,14 +41,14 @@
</configuration>
</execution>
<execution>
<id>org.aspectj:jdtcore:sources</id>
<id>org.aspectj:org.eclipse.jdt.core:sources</id>
<phase>verify</phase>
<goals>
<goal>install-file</goal>
</goals>
<configuration>
<groupId>org.aspectj</groupId>
<artifactId>jdtcore</artifactId>
<artifactId>org.eclipse.jdt.core</artifactId>
<version>1.9.3.BUILD-SNAPSHOT</version>
<packaging>jar</packaging>
<file>${basedir}/jdtcore-for-aspectj-src.zip</file>

+ 7
- 0
testing-util/pom.xml View File

@@ -15,6 +15,13 @@
<name>testing-util</name>

<dependencies>
<!--
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>asm</artifactId>
<version>${project.version}</version>
</dependency>
-->
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>util</artifactId>

+ 17
- 0
testing/pom.xml View File

@@ -140,4 +140,21 @@
<systemPath>${project.basedir}/../lib/commons/commons.jar</systemPath>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.2</version>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

+ 4
- 5
util/pom.xml View File

@@ -3,15 +3,14 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<artifactId>util</artifactId>
<packaging>jar</packaging>
<name>util</name>

<parent>
<groupId>org.aspectj</groupId>
<artifactId>aspectj-parent</artifactId>
<version>1.9.3.BUILD-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>

<artifactId>util</artifactId>
<packaging>jar</packaging>
<name>util</name>

</project>

Loading…
Cancel
Save