Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/facet/editor/org.eclipse.emf.facet.custom.doc/META-INF/maven/org.eclipse.emft/org.eclipse.emf.facet.custom.doc/pom.xml')
-rw-r--r--plugins/facet/editor/org.eclipse.emf.facet.custom.doc/META-INF/maven/org.eclipse.emft/org.eclipse.emf.facet.custom.doc/pom.xml99
1 files changed, 99 insertions, 0 deletions
diff --git a/plugins/facet/editor/org.eclipse.emf.facet.custom.doc/META-INF/maven/org.eclipse.emft/org.eclipse.emf.facet.custom.doc/pom.xml b/plugins/facet/editor/org.eclipse.emf.facet.custom.doc/META-INF/maven/org.eclipse.emft/org.eclipse.emf.facet.custom.doc/pom.xml
new file mode 100644
index 00000000000..d2f00a98984
--- /dev/null
+++ b/plugins/facet/editor/org.eclipse.emf.facet.custom.doc/META-INF/maven/org.eclipse.emft/org.eclipse.emf.facet.custom.doc/pom.xml
@@ -0,0 +1,99 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns:m2="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns="http://maven.apache.org/POM/4.0.0"
+ 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>
+ <parent>
+ <artifactId>org.eclipse.emf.facet.build</artifactId>
+ <groupId>org.eclipse.emft</groupId>
+ <version>0.4.0</version>
+ <relativePath>../../</relativePath>
+ </parent>
+ <groupId>org.eclipse.emft</groupId>
+ <artifactId>org.eclipse.emf.facet.custom.doc</artifactId>
+ <version>0.4.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <version>2.7</version>
+ <executions>
+ <execution>
+ <id>copy</id>
+ <phase>initialize</phase>
+ <goals>
+ <goal>copy</goal>
+ </goals>
+ <configuration>
+ <artifactItems>
+ <artifactItem>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.4</version>
+ <overWrite>false</overWrite>
+ </artifactItem>
+ </artifactItems>
+ <outputDirectory>${project.build.directory}/downloads</outputDirectory>
+ <overWriteReleases>false</overWriteReleases>
+ <overWriteSnapshots>true</overWriteSnapshots>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <version>1.7</version>
+ <executions>
+ <execution>
+ <id>generate-doc</id>
+ <phase>generate-resources</phase>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ <configuration>
+ <target>
+ <ant antfile="/opt/users/hudsonbuild/workspace/emffacet-nightly/org.eclipse.emf.facet.releng.tycho.util/doc.build.xml"
+ target="all"
+ inheritRefs="true">
+ <property name="org.eclipse.emf.facet.releng.tycho.util.doc.build.downloads"
+ value="${project.build.directory}/downloads"/>
+ </ant>
+ </target>
+ </configuration>
+ </execution>
+ </executions>
+ <dependencies>
+ <dependency>
+ <groupId>net.sf.saxon</groupId>
+ <artifactId>saxon</artifactId>
+ <version>8.7</version>
+ </dependency>
+ <dependency>
+ <groupId>ant-contrib</groupId>
+ <artifactId>ant-contrib</artifactId>
+ <version>1.0b3</version>
+ <exclusions>
+ <exclusion>
+ <groupId>ant</groupId>
+ <artifactId>ant</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.4</version>
+ </dependency>
+ </dependencies>
+ </plugin>
+ </plugins>
+ </build>
+</project> \ No newline at end of file

Back to the top