Repaired unit test.
[mapasuta/maven-emfgen-plugin.git] / pom.xml
blob99437fc107ad6f4453ec59fcfc458fb709449ae0
1 <?xml version="1.0" encoding="utf-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5   <modelVersion>4.0.0</modelVersion>
6   <parent>
7     <groupId>mapasuta</groupId>
8     <artifactId>mapasuta-umbrella</artifactId>
9     <version>0.0.3</version>
10     <relativePath>../../Application/umbrella/pom.xml</relativePath>
11   </parent>
12   <groupId>mapasuta.build.maven.plugins</groupId>
13   <artifactId>maven-emfgen-plugin</artifactId>
14   <packaging>maven-plugin</packaging>
15   <version>0.0.1-SNAPSHOT</version>
16   <name>Maven EMF Generator Plugin</name>
17   <description>Generates EMF GenModel and Model Sources</description>
18   <dependencies>
19     <dependency>
20       <groupId>org.apache.maven</groupId>
21       <artifactId>maven-plugin-api</artifactId>
22       <version>2.0.4</version>
23     </dependency>
24     <dependency>
25       <groupId>org.apache.maven</groupId>
26       <artifactId>maven-project</artifactId>
27       <version>2.0.4</version>
28     </dependency>
29     <dependency>
30       <groupId>org.codehaus.plexus</groupId>
31       <artifactId>plexus-utils</artifactId>
32       <version>1.1</version>
33     </dependency>
34     <dependency>
35       <groupId>org.testng</groupId>
36       <artifactId>testng</artifactId>
37       <version>5.0.2</version>
38       <scope>test</scope>
39       <classifier>jdk15</classifier>
40     </dependency>
41   </dependencies>
42   <build>
43     <plugins>
44       <plugin>
45         <groupId>org.apache.maven.plugins</groupId>
46         <artifactId>maven-surefire-plugin</artifactId>
47         <configuration>
48           <forkMode>once</forkMode>
49           <childDelegation>false</childDelegation>
50           <systemProperties>
51             <property>
52               <name>eclipse.home</name>
53               <value>${eclipse.home}</value>
54             </property>
55             <property>
56               <name>eclipse.workspace</name>
57               <value>target/testworkspace</value>
58             </property>
59             <property>
60               <name>output.dir</name>
61               <value>target/testmodel</value>
62             </property>
63           </systemProperties>
64           <suiteXmlFiles>
65             <suiteXmlFile>src/test/resources/testng.xml</suiteXmlFile>
66           </suiteXmlFiles>
67         </configuration>
68       </plugin>
69     </plugins>
70   </build>
71   <reporting>
72     <plugins>
73       <plugin>
74         <groupId>org.apache.maven.plugins</groupId>
75         <artifactId>maven-plugin-plugin</artifactId>
76       </plugin>
77     </plugins>
78   </reporting>
79 </project>