-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpom.xml
More file actions
78 lines (75 loc) · 2.61 KB
/
pom.xml
File metadata and controls
78 lines (75 loc) · 2.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?xml version="1.0" encoding="UTF-8"?>
<project>
<modelVersion>4.0.0</modelVersion>
<name>Export docx from Ecore</name>
<groupId>org.obeonetwork.m2doc</groupId>
<artifactId>org.obeonetwork.m2doc.launcher.example.ecore</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<properties>
<tycho-version>0.24.0</tycho-version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-maven-plugin</artifactId>
<version>${tycho-version}</version>
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>org.eclipse.tycho.extras</groupId>
<artifactId>tycho-eclipserun-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<repositories>
<repository>
<id>Neon update site </id>
<layout>p2</layout>
<url>http://download.eclipse.org/releases/neon/</url>
</repository>
<repository>
<id>Website Generator</id>
<layout>p2</layout>
<url>https://s3-eu-west-1.amazonaws.com/obeo-m2doc-releases/M2Doc_0.10.0_beta/repository</url>
</repository>
</repositories>
<applicationsArgs>
<args>-consoleLog</args>
<args>-application</args>
<args>org.obeonetwork.m2doc.launcher.M2DocLauncher</args>
<args>-data</args>
<args>${project.build.directory}/wks</args>
<args>-genconfs</args>
<args>.//model2docx.genconf</args>
</applicationsArgs>
<dependencies>
<!-- We need the actual launcher application -->
<dependency>
<artifactId>org.obeonetwork.m2doc.launcher.feature</artifactId>
<type>eclipse-feature</type>
</dependency>
<!-- The project containing the .aird model needs EcoreTools
to be resolved correctly -->
<dependency>
<artifactId>org.eclipse.emf.ecoretools.design</artifactId>
<type>eclipse-feature</type>
</dependency>
<dependency>
<artifactId>org.eclipse.rcp</artifactId>
<type>eclipse-feature</type>
</dependency>
</dependencies>
</configuration>
<executions>
<execution>
<goals>
<goal>eclipse-run</goal>
</goals>
<phase>generate-sources</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>