Skip to content

Commit

Permalink
[it] Add builddep IT for Tycho Pomless
Browse files Browse the repository at this point in the history
  • Loading branch information
mizdebsk committed Jul 27, 2017
1 parent 4a51fc0 commit f133ac7
Show file tree
Hide file tree
Showing 7 changed files with 43 additions and 0 deletions.
Expand Up @@ -187,4 +187,11 @@ public void testBuilddepProfileActivation()
expectBuildDependency( "org.codehaus.plexus", "plexus-component-metadata" );
performBuilddepTest();
}

@Test
public void testBuilddepTychoPomless()
throws Exception
{
performBuilddepTest();
}
}
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<extensions>
<extension>
<groupId>org.eclipse.tycho.extras</groupId>
<artifactId>tycho-pomless</artifactId>
<version>0.25.0</version>
</extension>
</extensions>
@@ -0,0 +1 @@
bin.includes = feature.xml
@@ -0,0 +1 @@
<feature id="my.feature" version="1.0.0.qualifier"/>
@@ -0,0 +1,4 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-SymbolicName: my.plugin
Bundle-Version: 1.0.0.qualifier
@@ -0,0 +1 @@
bin.includes = .
21 changes: 21 additions & 0 deletions xmvn-it/src/test/resources/testBuilddepTychoPomless/pom.xml
@@ -0,0 +1,21 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>my.groupId</groupId>
<artifactId>my.parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>plugin</module>
<module>feature</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-maven-plugin</artifactId>
<version>0.25.0</version>
<extensions>true</extensions>
</plugin>
</plugins>
</build>
</project>

0 comments on commit f133ac7

Please sign in to comment.