Skip to content

Commit

Permalink
Start of mavenization
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalleclercq committed Feb 21, 2018
1 parent 5627770 commit 5b53c4d
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
.project
.project
/target/
13 changes: 13 additions & 0 deletions org.eclipse.jdt.codemining/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.angelozerr</groupId>
<artifactId>jdt-codemining-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<groupId>org.angelozerr</groupId>
<artifactId>org.eclipse.jdt.codemining</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
29 changes: 29 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.angelozerr</groupId>
<artifactId>jdt-codemining-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-maven-plugin</artifactId>
<version>1.1.0</version>
<extensions>true</extensions>
</plugin>
</plugins>
</build>
<modules>
<module>org.eclipse.jdt.codemining</module>
</modules>

<repositories>
<repository>
<id>pluton</id>
<layout>p2</layout>
<url>http://download.eclipse.org/eclipse/updates/4.8milestones</url>
</repository>
</repositories>
</project>

0 comments on commit 5b53c4d

Please sign in to comment.