Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.github-site/pom.xml')
-rw-r--r--org.eclipse.mylyn.github-site/pom.xml48
1 files changed, 6 insertions, 42 deletions
diff --git a/org.eclipse.mylyn.github-site/pom.xml b/org.eclipse.mylyn.github-site/pom.xml
index 69ad2ae9..369e3cc5 100644
--- a/org.eclipse.mylyn.github-site/pom.xml
+++ b/org.eclipse.mylyn.github-site/pom.xml
@@ -18,56 +18,20 @@
<version>0.1.0-SNAPSHOT</version>
</parent>
- <artifactId>org.eclipse.mylyn.github-updatesite</artifactId>
- <packaging>eclipse-update-site</packaging>
+ <artifactId>github-updatesite</artifactId>
+ <packaging>eclipse-repository</packaging>
<name>Eclipse EGit Mylyn GitHub Repository (Incubation)</name>
<build>
<plugins>
<plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-assembly-plugin</artifactId>
- <version>2.2-beta-4</version>
+ <groupId>org.sonatype.tycho</groupId>
+ <artifactId>tycho-p2-publisher-plugin</artifactId>
+ <version>${tycho-version}</version>
<configuration>
- <descriptors>
- <descriptor>assembly.xml</descriptor>
- </descriptors>
+ <publishArtifacts>true</publishArtifacts>
</configuration>
- <executions>
- <execution>
- <id>make-assembly</id>
- <phase>package</phase>
- <goals>
- <goal>single</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
-
- <plugin>
- <artifactId>maven-resources-plugin</artifactId>
- <executions>
- <execution>
- <id>copy-resources</id>
- <phase>validate</phase>
- <goals>
- <goal>copy-resources</goal>
- </goals>
- <configuration>
- <outputDirectory>${basedir}/target/site</outputDirectory>
- <resources>
- <resource>
- <directory>.</directory>
- <includes>
- <include>index.html</include>
- <include>web/*</include>
- </includes>
- </resource>
- </resources>
- </configuration>
- </execution>
- </executions>
</plugin>
</plugins>
</build>

Back to the top