Added system environment to subprocess (Bug #1619451). Changed testng to v5.1
[mapasuta/maven-emfgen-plugin.git] / pom.xml
blob721e70b56cd9553b01fdce570a74221e04156e4e
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>net.sf.mapasuta</groupId>
8     <artifactId>mapasuta-umbrella</artifactId>
9     <version>0.0.5</version>
10     <relativePath>../../Application/umbrella/pom.xml</relativePath>
11   </parent>
12   <groupId>net.sf.mapasuta.build.maven.plugins</groupId>
13   <artifactId>maven-emfgen-plugin</artifactId>
14   <packaging>maven-plugin</packaging>
15   <version>1.0-beta-2</version>
16   <name>Maven EMF Generator Plugin</name>
17   <description>Generates EMF GenModel and Model Sources</description>
18   <scm>
19     <url>http://mapasuta.sourceforge.net/cgi-bin/gitweb.cgi?p=maven-emfgen-plugin.git</url>
20     <connection>scm:git:http://mapasuta.sourceforge.net/scm/maven-oaw-plugin.git</connection>
21     <developerConnection>${project.scm.connection}</developerConnection>
22   </scm>
23   <dependencies>
24     <dependency>
25       <groupId>org.apache.maven</groupId>
26       <artifactId>maven-plugin-api</artifactId>
27       <version>2.0.4</version>
28     </dependency>
29     <dependency>
30       <groupId>org.apache.maven</groupId>
31       <artifactId>maven-project</artifactId>
32       <version>2.0.4</version>
33     </dependency>
34     <dependency>
35       <groupId>org.codehaus.plexus</groupId>
36       <artifactId>plexus-utils</artifactId>
37       <version>1.1</version>
38     </dependency>
39     <dependency>
40       <groupId>org.testng</groupId>
41       <artifactId>testng</artifactId>
42       <version>5.1</version>
43       <scope>test</scope>
44       <classifier>jdk15</classifier>
45     </dependency>
46   </dependencies>
47   <build>
48     <plugins>
49       <plugin>
50         <groupId>org.apache.maven.plugins</groupId>
51         <artifactId>maven-surefire-plugin</artifactId>
52         <configuration>
53           <forkMode>once</forkMode>
54           <childDelegation>false</childDelegation>
55           <systemProperties>
56             <property>
57               <name>eclipse.home</name>
58               <value>${eclipse.home}</value>
59             </property>
60             <property>
61               <name>eclipse.workspace</name>
62               <value>target/testworkspace</value>
63             </property>
64             <property>
65               <name>output.dir</name>
66               <value>target/testmodel</value>
67             </property>
68           </systemProperties>
69           <suiteXmlFiles>
70             <suiteXmlFile>src/test/resources/testng.xml</suiteXmlFile>
71           </suiteXmlFiles>
72         </configuration>
73       </plugin>
74     </plugins>
75   </build>
76   <reporting>
77     <plugins>
78       <plugin>
79         <groupId>org.apache.maven.plugins</groupId>
80         <artifactId>maven-plugin-plugin</artifactId>
81       </plugin>
82     </plugins>
83   </reporting>
84 </project>