-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpom.xml
86 lines (83 loc) · 2.95 KB
/
pom.xml
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
79
80
81
82
83
84
85
86
<?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>3.0.3</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>Eclipse update site </id>
<layout>p2</layout>
<url>https://download.eclipse.org/releases/2022-12/</url>
</repository>
<repository>
<id>M2Doc update site</id>
<layout>p2</layout>
<url>https://s3-eu-west-1.amazonaws.com/obeo-m2doc-releases/3.2.2/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>file://${project.basedir}/model2docx.genconf</args>
</applicationsArgs>
<dependencies>
<!-- We need the actual launcher application -->
<dependency>
<artifactId>org.obeonetwork.m2doc.launcher.feature</artifactId>
<type>eclipse-feature</type>
</dependency>
<dependency>
<artifactId>org.obeonetwork.m2doc.html.feature</artifactId>
<type>eclipse-feature</type>
</dependency>
<dependency>
<artifactId>org.obeonetwork.m2doc.ui.jdt.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>