diff options
author | Andy Clement <aclement@pivotal.io> | 2019-01-31 12:03:30 -0800 |
---|---|---|
committer | Andy Clement <aclement@pivotal.io> | 2019-01-31 12:03:30 -0800 |
commit | b5a9f23c80222f8d68985173c50016ab66c69115 (patch) | |
tree | 1cdc0ceb98c7ac92be2e6fbea668081d1390832f /org.eclipse.jdt.core | |
parent | 1f66dac4c201c23c624cff7cf0751c2aa811e27b (diff) | |
download | aspectj-b5a9f23c80222f8d68985173c50016ab66c69115.tar.gz aspectj-b5a9f23c80222f8d68985173c50016ab66c69115.zip |
various polish to previously mavenized projects to support newer ones
Diffstat (limited to 'org.eclipse.jdt.core')
-rw-r--r-- | org.eclipse.jdt.core/pom.xml | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/org.eclipse.jdt.core/pom.xml b/org.eclipse.jdt.core/pom.xml index bdb23ccb5..02dd01604 100644 --- a/org.eclipse.jdt.core/pom.xml +++ b/org.eclipse.jdt.core/pom.xml @@ -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> |