Bump versions to 3.3.11
[EMFCompare2.git] / packaging / org.eclipse.emf.compare.gendoc / pom.xml
blob86b14fa157838571b573cb2bdd75153721ed8142
1 <project xmlns="http://maven.apache.org/POM/4.0.0" 
2         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
4         http://maven.apache.org/maven-v4_0_0.xsd">
5         <modelVersion>4.0.0</modelVersion>
6         <parent>
7             <artifactId>emf.compare-parent</artifactId>
8             <groupId>org.eclipse.emf.compare</groupId>
9             <version>3.3.11-SNAPSHOT</version>
10             <relativePath>../../org.eclipse.emf.compare-parent</relativePath>
11         </parent>
12         <groupId>org.eclipse.emf.compare</groupId>
13         <artifactId>org.eclipse.emf.compare.gendoc</artifactId>
14         <packaging>jar</packaging>
15         <version>1.0</version>
17         <properties>
18                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
19                 <jdk.version>1.7</jdk.version>
20         </properties>
22         <repositories>
23                 <repository>
24                         <id>local-repository</id>
25                         <url>file://${basedir}/mvn</url>
26                 </repository>
27         </repositories>
29         <dependencies>
30                 <dependency>
31                         <groupId>org.eclipse.mylyn</groupId>
32                         <artifactId>org.eclipse.mylyn.wikitext.core</artifactId>
33                         <version>1.9.0.20131007-2055</version>
34                 </dependency>
35                 <dependency>
36                         <groupId>org.eclipse.mylyn</groupId>
37                         <artifactId>org.eclipse.mylyn.wikitext.mediawiki.core</artifactId>
38                         <version>1.9.0.20131007-2055</version>
39                 </dependency>
40         </dependencies>
42         <build>
43         <sourceDirectory>${basedir}/src</sourceDirectory>
44         <plugins>
45                 <plugin>
46                         <groupId>org.apache.maven.plugins</groupId>
47                         <artifactId>maven-antrun-plugin</artifactId>
48                         <executions>
49                                 <execution>
50                                         <id>prepare</id>
51                                         <phase>validate</phase>
52                                         <configuration>
53                                                 <target> 
54                                                         <unzip src="lib/jar-in-jar-loader.zip" dest="${project.build.outputDirectory}/" />
55                                                 </target>
56                                         </configuration>
57                                         <goals>
58                                                 <goal>run</goal>
59                                         </goals>
60                                 </execution>
61                         </executions>
62                 </plugin>
63                 <plugin>
64                         <groupId>org.apache.maven.plugins</groupId>
65                         <artifactId>maven-compiler-plugin</artifactId>
66                         <configuration>
67                                 <source>${jdk.version}</source>
68                                 <target>${jdk.version}</target>
69                         </configuration>
70                 </plugin>
71                 <plugin>
72                         <groupId>org.apache.maven.plugins</groupId>
73                         <artifactId>maven-jar-plugin</artifactId>
74                 </plugin>
75                 <plugin>
76                         <groupId>org.apache.maven.plugins</groupId>
77                         <artifactId>maven-assembly-plugin</artifactId>
78                         <executions>
79                                 <execution>
80                                         <phase>package</phase>
81                                         <goals>
82                                                 <goal>single</goal>
83                                         </goals>
84                                 </execution>
85                         </executions>
86                         <configuration>
87                                 <descriptors>
88                                         <descriptor>assembly.xml</descriptor>
89                                 </descriptors>
90                                 <archive>
91                                         <manifest>
92                                                 <mainClass>org.eclipse.jdt.internal.jarinjarloader.JarRsrcLoader</mainClass>
93                                         </manifest>
94                                         <manifestEntries>
95                                                 <Class-Path>.</Class-Path>
96                                                 <Rsrc-Main-Class>org.eclipse.emf.compare.doc.WikiTextToHTML</Rsrc-Main-Class>
97                                                 <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>
98                                         </manifestEntries>
99                                 </archive>
100                         </configuration>
101                 </plugin>
102         </plugins>
103         </build>
104 </project>