Skip to content

Commit

Permalink
mavenized project
Browse files Browse the repository at this point in the history
  • Loading branch information
pulse00 committed Mar 15, 2012
1 parent e0f8b6c commit 6a65535
Show file tree
Hide file tree
Showing 5 changed files with 75 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
@@ -1,4 +1,6 @@
.DS_Store
org.dadacoalition.yedit.test/bin/*
org.dadacoalition.yedit/bin/*
org.dadacoalition.yedit/target/*
org.dadacoalition.yedit.feature/target/*

2 changes: 1 addition & 1 deletion org.dadacoalition.yedit.feature/feature.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<feature
id="org.dadacoalition.yedit"
id="org.dadacoalition.yedit.feature"
label="YEdit Feature"
version="0.0.12"
provider-name="YEdit Project">
Expand Down
16 changes: 16 additions & 0 deletions org.dadacoalition.yedit.feature/pom.xml
@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.dadacoalition.yedit</groupId>
<artifactId>parent</artifactId>
<version>0.0.12</version>
</parent>

<artifactId>org.dadacoalition.yedit.feature</artifactId>
<packaging>eclipse-feature</packaging>
</project>

17 changes: 17 additions & 0 deletions org.dadacoalition.yedit/pom.xml
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.dadacoalition.yedit</groupId>
<artifactId>parent</artifactId>
<version>0.0.12</version>
</parent>

<artifactId>org.dadacoalition.yedit</artifactId>
<packaging>eclipse-plugin</packaging>

</project>

39 changes: 39 additions & 0 deletions pom.xml
@@ -0,0 +1,39 @@
<?xml version="1.0" encoding="UTF-8"?>
<project>
<modelVersion>4.0.0</modelVersion>

<groupId>org.dadacoalition.yedit</groupId>
<artifactId>parent</artifactId>
<version>0.0.12</version>
<packaging>pom</packaging>

<modules>
<module>org.dadacoalition.yedit</module>
<module>org.dadacoalition.yedit.feature</module>
</modules>

<repositories>
<repository>
<id>indigo</id>
<layout>p2</layout>
<url>http://download.eclipse.org/releases/indigo</url>
</repository>
</repositories>

<properties>
<tycho-version>0.13.0</tycho-version>
</properties>

<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-maven-plugin</artifactId>
<version>${tycho-version}</version>
<extensions>true</extensions>
</plugin>
</plugins>
</build>


</project>

0 comments on commit 6a65535

Please sign in to comment.