diff options
author | Tom Schindl | 2014-03-24 12:59:14 +0000 |
---|---|---|
committer | Tom Schindl | 2014-03-24 12:59:14 +0000 |
commit | fb7ee05f094cb6e9815978ce9bc3e2d428a00b95 (patch) | |
tree | 172d83efb006329fc84569d1179784916e663eb4 /releng/org.eclipse.fx.core.shared.updatesite | |
parent | 79e456af65236970f865c39502341982992b58f7 (diff) | |
download | org.eclipse.efxclipse-fb7ee05f094cb6e9815978ce9bc3e2d428a00b95.tar.gz org.eclipse.efxclipse-fb7ee05f094cb6e9815978ce9bc3e2d428a00b95.tar.xz org.eclipse.efxclipse-fb7ee05f094cb6e9815978ce9bc3e2d428a00b95.zip |
restructuring build
Diffstat (limited to 'releng/org.eclipse.fx.core.shared.updatesite')
-rw-r--r-- | releng/org.eclipse.fx.core.shared.updatesite/.project | 17 | ||||
-rw-r--r-- | releng/org.eclipse.fx.core.shared.updatesite/pom.xml | 68 | ||||
-rw-r--r-- | releng/org.eclipse.fx.core.shared.updatesite/site.xml | 4 |
3 files changed, 89 insertions, 0 deletions
diff --git a/releng/org.eclipse.fx.core.shared.updatesite/.project b/releng/org.eclipse.fx.core.shared.updatesite/.project new file mode 100644 index 000000000..cd1f16893 --- /dev/null +++ b/releng/org.eclipse.fx.core.shared.updatesite/.project @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8"?> +<projectDescription> + <name>org.eclipse.fx.core.shared.updatesite</name> + <comment></comment> + <projects> + </projects> + <buildSpec> + <buildCommand> + <name>org.eclipse.pde.UpdateSiteBuilder</name> + <arguments> + </arguments> + </buildCommand> + </buildSpec> + <natures> + <nature>org.eclipse.pde.UpdateSiteNature</nature> + </natures> +</projectDescription> diff --git a/releng/org.eclipse.fx.core.shared.updatesite/pom.xml b/releng/org.eclipse.fx.core.shared.updatesite/pom.xml new file mode 100644 index 000000000..29494bbec --- /dev/null +++ b/releng/org.eclipse.fx.core.shared.updatesite/pom.xml @@ -0,0 +1,68 @@ +<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>
+ <name>e(fx)clipse - Runtime - Updatesite</name>
+ <groupId>org.eclipse.fx.shared</groupId>
+ <artifactId>org.eclipse.fx.shared.updatesite</artifactId>
+ <packaging>eclipse-update-site</packaging>
+
+ <parent>
+ <groupId>org.eclipse.fx.shared</groupId>
+ <artifactId>releng</artifactId>
+ <relativePath>../org.eclipse.fx.shared.releng/pom.xml</relativePath>
+ <version>1.0.0-SNAPSHOT</version>
+ </parent>
+
+ <properties>
+ <p2repo-zip-path>${project.build.directory}/site_assembly.zip</p2repo-zip-path>
+ </properties>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-packaging-plugin</artifactId>
+ <configuration>
+ <archiveSite>true</archiveSite>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+ <profiles>
+ <profile>
+ <id>build-server</id>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>deploy</id>
+ <phase>install</phase>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ <configuration>
+ <tasks>
+ <delete includeemptydirs="false">
+ <fileset dir="${download-publish-path}">
+ <include name="**" />
+ </fileset>
+ </delete>
+ <copy includeemptydirs="false" todir="${download-publish-path}">
+ <fileset dir="target">
+ <include name="**" />
+ </fileset>
+ </copy>
+ </tasks>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
+
+</project>
\ No newline at end of file diff --git a/releng/org.eclipse.fx.core.shared.updatesite/site.xml b/releng/org.eclipse.fx.core.shared.updatesite/site.xml new file mode 100644 index 000000000..f527cdcf9 --- /dev/null +++ b/releng/org.eclipse.fx.core.shared.updatesite/site.xml @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="UTF-8"?> +<site> + <feature url="features/org.eclipse.fx.core.shared.feature_1.0.0.qualifier.jar" id="org.eclipse.fx.core.shared.feature" version="1.0.0.qualifier"/> +</site> |