Skip to content

Commit

Permalink
Add m2e integration to update site and tycho build
Browse files Browse the repository at this point in the history
  • Loading branch information
kdvolder committed Mar 18, 2014
1 parent 17c91c6 commit 5de2ab9
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 6 deletions.
2 changes: 1 addition & 1 deletion extras/Feature-org.codehaus.groovy.m2eclipse/.project
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>Feature org.codehaus.groovy.m2eclipse</name>
<name>Feature-org.codehaus.groovy.m2eclipse</name>
<comment></comment>
<projects>
</projects>
Expand Down
4 changes: 2 additions & 2 deletions extras/Feature-org.codehaus.groovy.m2eclipse/feature.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<feature
id="org.codehaus.groovy.m2eclipse"
id="org.codehaus.groovy.m2eclipse.feature"
label="%featureName"
version="2.9.0.qualifier"
provider-name="%providerName">
Expand All @@ -25,7 +25,7 @@
<import plugin="org.codehaus.groovy.eclipse.core" version="2.0.1" match="greaterOrEqual"/>
<import plugin="org.eclipse.jdt.core" version="3.5.1" match="greaterOrEqual"/>
<import feature="org.codehaus.groovy.eclipse.feature" version="2.8.0.qualifier"/>
<import feature="org.eclipse.m2e.feature" version="1.0.0" match="greaterOrEqual"/>
<!-- <import feature="org.eclipse.m2e.feature" version="1.0.0" match="greaterOrEqual"/> -->
</requires>

<plugin
Expand Down
16 changes: 16 additions & 0 deletions extras/Feature-org.codehaus.groovy.m2eclipse/pom.xml
@@ -0,0 +1,16 @@
<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>
<relativePath>../../pom.xml</relativePath>
<groupId>org.codehaus.groovy.eclipse</groupId>
<artifactId>org.codehaus.groovy.eclipse.parent</artifactId>
<version>2.9.0-SNAPSHOT</version>
</parent>

<groupId>org.codehaus.groovy.eclipse</groupId>
<artifactId>org.codehaus.groovy.m2eclipse.feature</artifactId>
<version>2.9.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>

</project>
13 changes: 13 additions & 0 deletions extras/org.codehaus.groovy.m2eclipse/pom.xml
@@ -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>
<relativePath>../../pom.xml</relativePath>
<groupId>org.codehaus.groovy.eclipse</groupId>
<artifactId>org.codehaus.groovy.eclipse.parent</artifactId>
<version>2.9.0-SNAPSHOT</version>
</parent>
<groupId>org.codehaus.groovy.eclipse</groupId>
<artifactId>org.codehaus.groovy.m2eclipse</artifactId>
<version>2.9.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
4 changes: 2 additions & 2 deletions jdt-patch/e43j8/Site-org.codehaus.groovy.eclipse/site.xml
Expand Up @@ -33,10 +33,10 @@
<category name="org.codehaus.groovy.compilers"/>
</feature>

<!--
<feature url="features/org.codehaus.groovy.m2eclipse_2.9.0.qualifier.jar" id="org.codehaus.groovy.m2eclipse" version="2.9.0.qualifier">
<feature url="features/org.codehaus.groovy.m2eclipse.feature_2.9.0.qualifier.jar" id="org.codehaus.groovy.m2eclipse.feature" version="2.9.0.qualifier">
<category name="org.codehaus.groovy.m2eclipse"/>
</feature>
<!--
<feature url="features/org.codehaus.groovy.m2eclipse.source_2.9.0.qualifier.jar" id="org.codehaus.groovy.m2eclipse.source" version="2.9.0.qualifier">
<category name="org.codehaus.groovy.m2eclipse"/>
</feature>
Expand Down
5 changes: 4 additions & 1 deletion pom.xml
Expand Up @@ -38,7 +38,10 @@
</properties>

<modules>


<!-- m2e integration -->
<module>extras/Feature-org.codehaus.groovy.m2eclipse</module>
<module>extras/org.codehaus.groovy.m2eclipse</module>
<!-- SDK and test bits -->

<module>ide-test</module> <!-- parent pom for all the ide-test modules -->
Expand Down

0 comments on commit 5de2ab9

Please sign in to comment.