diff options
author | Fabian Steeg | 2011-03-25 19:09:43 +0000 |
---|---|---|
committer | Chris Aniszczyk | 2011-03-30 21:12:16 +0000 |
commit | 487cea9a8c23d97c01d1e8c7b30ebf44346ad174 (patch) | |
tree | 6b30ae1db2c3b30ef6afefa7f76c3bf1fc1f09ba /org.eclipse.mylyn.github-site/pom.xml | |
parent | ce72947bb045eb484d6c08b8cd77202ff2d14641 (diff) | |
download | egit-github-487cea9a8c23d97c01d1e8c7b30ebf44346ad174.tar.gz egit-github-487cea9a8c23d97c01d1e8c7b30ebf44346ad174.tar.xz egit-github-487cea9a8c23d97c01d1e8c7b30ebf44346ad174.zip |
Build 'eclipse-repository' instead of 'eclipse-update-site'
Change-Id: I165026955642cc9d4274a4ff6af675f2f8e4a896
Signed-off-by: Fabian Steeg <fsteeg@gmail.com>
Signed-off-by: Mykola Nikishov <mn@mn.com.ua>
Signed-off-by: Chris Aniszczyk <caniszczyK@gmail.com>
Diffstat (limited to 'org.eclipse.mylyn.github-site/pom.xml')
-rw-r--r-- | org.eclipse.mylyn.github-site/pom.xml | 48 |
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> |