aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jdt.core/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jdt.core/pom.xml')
-rw-r--r--org.eclipse.jdt.core/pom.xml62
1 files changed, 62 insertions, 0 deletions
diff --git a/org.eclipse.jdt.core/pom.xml b/org.eclipse.jdt.core/pom.xml
new file mode 100644
index 000000000..bdb23ccb5
--- /dev/null
+++ b/org.eclipse.jdt.core/pom.xml
@@ -0,0 +1,62 @@
+<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>
+
+ <parent>
+ <groupId>org.aspectj</groupId>
+ <artifactId>aspectj-parent</artifactId>
+ <version>1.9.3.BUILD-SNAPSHOT</version>
+ <relativePath>..</relativePath>
+ </parent>
+
+ <artifactId>org.eclipse.jdt.core</artifactId>
+ <packaging>jar</packaging>
+ <name>org.eclipse.jdt.core</name>
+
+<build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-install-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>org.aspectj:jdtcore</id>
+ <phase>verify</phase>
+ <goals>
+ <goal>install-file</goal>
+ </goals>
+ <configuration>
+ <groupId>org.aspectj</groupId>
+ <artifactId>jdtcore</artifactId>
+ <version>1.9.3.BUILD-SNAPSHOT</version>
+ <packaging>jar</packaging>
+ <file>${basedir}/jdtcore-for-aspectj.jar</file>
+ <createChecksum>true</createChecksum>
+ <generatePom>true</generatePom>
+ </configuration>
+ </execution>
+ <execution>
+ <id>org.aspectj:jdtcore:sources</id>
+ <phase>verify</phase>
+ <goals>
+ <goal>install-file</goal>
+ </goals>
+ <configuration>
+ <groupId>org.aspectj</groupId>
+ <artifactId>jdtcore</artifactId>
+ <version>1.9.3.BUILD-SNAPSHOT</version>
+ <packaging>jar</packaging>
+ <file>${basedir}/jdtcore-for-aspectj-src.zip</file>
+ <createChecksum>true</createChecksum>
+ <classifier>sources</classifier>
+ <generatePom>true</generatePom>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+</build>
+
+
+</project>