Skip to main content
summaryrefslogtreecommitdiffstats
blob: 2d4904fde087257bef960e7e110bf2720ab634f0 (plain) (blame)
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<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/maven-v4_0_0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<parent>
	    <artifactId>emf.compare-parent</artifactId>
	    <groupId>org.eclipse.emf.compare</groupId>
	    <version>3.3.0-SNAPSHOT</version>
	    <relativePath>../../org.eclipse.emf.compare-parent</relativePath>
  	</parent>
	<groupId>org.eclipse.emf.compare</groupId>
	<artifactId>org.eclipse.emf.compare.gendoc</artifactId>
	<packaging>jar</packaging>
	<version>1.0</version>
 
	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<jdk.version>1.7</jdk.version>
	</properties>
 
	<repositories>
		<repository>
			<id>local-repository</id>
			<url>file://${basedir}/mvn</url>
		</repository>
	</repositories>
 
	<dependencies>
		<dependency>
			<groupId>org.eclipse.mylyn</groupId>
			<artifactId>org.eclipse.mylyn.wikitext.core</artifactId>
			<version>1.9.0.20131007-2055</version>
		</dependency>
		<dependency>
			<groupId>org.eclipse.mylyn</groupId>
			<artifactId>org.eclipse.mylyn.wikitext.mediawiki.core</artifactId>
			<version>1.9.0.20131007-2055</version>
		</dependency>
	</dependencies>
 
	<build>
	<sourceDirectory>${basedir}/src</sourceDirectory>
	<plugins>
		<plugin>
			<groupId>org.apache.maven.plugins</groupId>
			<artifactId>maven-antrun-plugin</artifactId>
			<executions>
				<execution>
					<id>prepare</id>
					<phase>validate</phase>
					<configuration>
						<target> 
							<unzip src="lib/jar-in-jar-loader.zip" dest="${project.build.outputDirectory}/" />
						</target>
					</configuration>
					<goals>
						<goal>run</goal>
					</goals>
				</execution>
			</executions>
		</plugin>
		<plugin>
			<groupId>org.apache.maven.plugins</groupId>
			<artifactId>maven-compiler-plugin</artifactId>
			<configuration>
				<source>${jdk.version}</source>
				<target>${jdk.version}</target>
			</configuration>
		</plugin>
		<plugin>
			<groupId>org.apache.maven.plugins</groupId>
			<artifactId>maven-jar-plugin</artifactId>
		</plugin>
		<plugin>
			<groupId>org.apache.maven.plugins</groupId>
			<artifactId>maven-assembly-plugin</artifactId>
			<executions>
				<execution>
					<phase>package</phase>
					<goals>
						<goal>single</goal>
					</goals>
				</execution>
			</executions>
			<configuration>
				<descriptors>
					<descriptor>assembly.xml</descriptor>
				</descriptors>
				<archive>
					<manifest>
						<mainClass>org.eclipse.jdt.internal.jarinjarloader.JarRsrcLoader</mainClass>
					</manifest>
					<manifestEntries>
						<Class-Path>.</Class-Path>
						<Rsrc-Main-Class>org.eclipse.emf.compare.doc.WikiTextToHTML</Rsrc-Main-Class>
						<Rsrc-Class-Path>./ org.eclipse.mylyn.wikitext.core-1.9.0.20131007-2055.jar org.eclipse.mylyn.wikitext.mediawiki.core-1.9.0.20131007-2055.jar</Rsrc-Class-Path>
					</manifestEntries>
				</archive>
			</configuration>
		</plugin>
	</plugins>
	</build>
</project>

Back to the top