-
Notifications
You must be signed in to change notification settings - Fork 54
/
pom.xml
90 lines (89 loc) · 3.01 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
87
88
89
90
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2016 itemis AG and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/epl-v10.html
Contributors:
Alexander Nyßen (itemis AG) - initial API and implementation
-->
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.gef</groupId>
<artifactId>org.eclipse.gef.releng</artifactId>
<version>5.0.0-SNAPSHOT</version>
<relativePath>../org.eclipse.gef.releng/pom.xml</relativePath>
</parent>
<groupId>org.eclipse.gef.plugins</groupId>
<artifactId>org.eclipse.gef.mvc.doc</artifactId>
<version>5.0.2-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
<build>
<plugins>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>prepare-api-context-libs</id>
<phase>generate-sources</phase>
<configuration>
<outputDirectory>api-context-libs</outputDirectory>
<stripVersion>true</stripVersion>
<excludeArtifactIds>org.eclipse.platform.doc.isv</excludeArtifactIds>
</configuration>
<goals>
<goal>copy-dependencies</goal>
</goals>
</execution>
<execution>
<id>prepare-linkoffline-target</id>
<phase>generate-sources</phase>
<configuration>
<outputDirectory>linkoffline-target</outputDirectory>
<stripVersion>true</stripVersion>
<includeArtifactIds>org.eclipse.platform.doc.isv</includeArtifactIds>
</configuration>
<goals>
<goal>copy-dependencies</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>${maven-antrun-plugin.version}</version>
<executions>
<execution>
<id>prepare-offline-link-targets</id>
<phase>process-sources</phase>
<configuration>
<target>
<echo message="Preparing linkoffline-target" />
<unzip src="linkoffline-target/org.eclipse.platform.doc.isv.jar"
dest="linkoffline-target/org.eclipse.platform.doc.isv/" />
<echo
message="Done: linkoffline-target contains unzipped offline link target." />
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<!-- Add pom dependency to guice-multibindings fragment (so this is added as a api-context-lib) -->
<dependency>
<groupId>com.google.inject.extensions</groupId>
<artifactId>guice-multibindings</artifactId>
<version>3.0</version>
</dependency>
</dependencies>
</project>