Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgor Fedorenko2012-08-18 02:16:28 +0000
committerIgor Fedorenko2012-08-18 02:16:28 +0000
commit2c0d905fb262e8e1f7b886538118cba4a9e34c01 (patch)
treec9b43ba5f2a8de38b5ae7a568bfe82c7db9b3e5e /org.eclipse.m2e.site/pom.xml
parent09a35be7a716e5f17b51955d84f587797b356027 (diff)
downloadm2e-core-2c0d905fb262e8e1f7b886538118cba4a9e34c01.tar.gz
m2e-core-2c0d905fb262e8e1f7b886538118cba4a9e34c01.tar.xz
m2e-core-2c0d905fb262e8e1f7b886538118cba4a9e34c01.zip
Introduced -Peclipse-sign to sign and pack200 on build.eclipse.org
Signed-off-by: Igor Fedorenko <igor@ifedorenko.com>
Diffstat (limited to 'org.eclipse.m2e.site/pom.xml')
-rw-r--r--org.eclipse.m2e.site/pom.xml53
1 files changed, 5 insertions, 48 deletions
diff --git a/org.eclipse.m2e.site/pom.xml b/org.eclipse.m2e.site/pom.xml
index eebb59a0..b8d88b75 100644
--- a/org.eclipse.m2e.site/pom.xml
+++ b/org.eclipse.m2e.site/pom.xml
@@ -17,63 +17,20 @@
</parent>
<artifactId>org.eclipse.m2e.site</artifactId>
- <packaging>eclipse-feature</packaging>
+ <packaging>eclipse-repository</packaging>
<name>Maven Integration for Eclipse Update Site</name>
<build>
- <extensions>
- <extension>
- <groupId>org.apache.maven.wagon</groupId>
- <artifactId>wagon-ssh-external</artifactId>
- <version>1.0-beta-7</version>
- </extension>
- </extensions>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
- <artifactId>tycho-packaging-plugin</artifactId>
+ <artifactId>target-platform-configuration</artifactId>
+ <version>${tycho-version}</version>
<configuration>
- <deployableFeature>true</deployableFeature>
+ <includePackedArtifacts>true</includePackedArtifacts>
</configuration>
</plugin>
- <plugin>
- <groupId>org.eclipse.tycho</groupId>
- <artifactId>tycho-p2-plugin</artifactId>
- <executions>
- <execution>
- <id>categorization</id>
- <phase>package</phase>
- <goals>
- <goal>category-p2-metadata</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <metadataRepositoryName>Maven Integration for Eclipse</metadataRepositoryName>
- <artifactRepositoryName>Maven Integration for Eclipse</artifactRepositoryName>
- </configuration>
- </plugin>
-
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-assembly-plugin</artifactId>
- <configuration>
- <descriptors>
- <descriptor>src/main/assembly/assembly.xml</descriptor>
- </descriptors>
- </configuration>
- <executions>
- <execution>
- <id>make-assembly</id>
- <phase>package</phase>
- <goals>
- <goal>single</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
-
</plugins>
</build>
@@ -95,7 +52,7 @@
<goal>upload-file</goal>
</goals>
<configuration>
- <file>${project.build.directory}/${project.artifactId}-${project.version}-site.zip</file>
+ <file>${project.build.directory}/${project.artifactId}-${project.version}.zip</file>
<serverId>forge-releases</serverId>
<repositoryUrl>${m2e.site-compressed}</repositoryUrl>
<repositoryPath>m2e/${unqualifiedVersion}/N/${unqualifiedVersion}.${buildQualifier}</repositoryPath>

Back to the top