aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Clement <aclement@pivotal.io>2019-01-28 16:11:57 -0800
committerAndy Clement <aclement@pivotal.io>2019-01-28 16:11:57 -0800
commit6fa7ee1a67699219bf91339582eff594f6bc67f3 (patch)
tree6213e108d63d9bc99e152651645de8940c2ca216
parent8deb80454be1ea220f7d2296323fbb29a6f088a7 (diff)
downloadaspectj-6fa7ee1a67699219bf91339582eff594f6bc67f3.tar.gz
aspectj-6fa7ee1a67699219bf91339582eff594f6bc67f3.zip
mavenizing org.eclipse.jdt.core - done
-rw-r--r--org.eclipse.jdt.core/.classpath5
-rw-r--r--org.eclipse.jdt.core/.cvsignore1
-rw-r--r--org.eclipse.jdt.core/.project18
-rw-r--r--org.eclipse.jdt.core/notamodule0
-rw-r--r--org.eclipse.jdt.core/pom.xml62
5 files changed, 62 insertions, 24 deletions
diff --git a/org.eclipse.jdt.core/.classpath b/org.eclipse.jdt.core/.classpath
deleted file mode 100644
index 64dbfa10b..000000000
--- a/org.eclipse.jdt.core/.classpath
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<classpath>
- <classpathentry exported="true" sourcepath="jdtcore-for-aspectj-src.zip" kind="lib" path="jdtcore-for-aspectj.jar"/>
- <classpathentry kind="output" path="bin"/>
-</classpath>
diff --git a/org.eclipse.jdt.core/.cvsignore b/org.eclipse.jdt.core/.cvsignore
deleted file mode 100644
index ba077a403..000000000
--- a/org.eclipse.jdt.core/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-bin
diff --git a/org.eclipse.jdt.core/.project b/org.eclipse.jdt.core/.project
deleted file mode 100644
index 82656fe89..000000000
--- a/org.eclipse.jdt.core/.project
+++ /dev/null
@@ -1,18 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<projectDescription>
- <name>org.eclipse.jdt.core</name>
- <comment></comment>
- <projects>
- <project>shadows.org.eclipse.jdt.core</project>
- </projects>
- <buildSpec>
- <buildCommand>
- <name>org.eclipse.jdt.core.javabuilder</name>
- <arguments>
- </arguments>
- </buildCommand>
- </buildSpec>
- <natures>
- <nature>org.eclipse.jdt.core.javanature</nature>
- </natures>
-</projectDescription>
diff --git a/org.eclipse.jdt.core/notamodule b/org.eclipse.jdt.core/notamodule
deleted file mode 100644
index e69de29bb..000000000
--- a/org.eclipse.jdt.core/notamodule
+++ /dev/null
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>