Removed version range
[mapasuta/maven-emfgen-plugin.git] / pom.xml
blob0a9adfff5efde74f29708731e67516e7a05c32ca
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.1-SNAPSHOT</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.7</version>
28       <scope>compile</scope>
29     </dependency>
30     <dependency>
31       <groupId>org.apache.maven</groupId>
32       <artifactId>maven-project</artifactId>
33       <version>2.0.7</version>
34       <scope>compile</scope>
35     </dependency>
36     <dependency>
37       <groupId>org.codehaus.plexus</groupId>
38       <artifactId>plexus-utils</artifactId>
39       <version>1.4.5</version>
40       <scope>compile</scope>
41     </dependency>
42     <dependency>
43       <groupId>org.testng</groupId>
44       <artifactId>testng</artifactId>
45       <version>5.1</version>
46       <scope>test</scope>
47       <classifier>jdk15</classifier>
48     </dependency>
49   </dependencies>
50   <prerequisites>
51     <maven>2.0.7</maven>
52   </prerequisites>
53   <build>
54     <plugins>
55       <plugin>
56         <artifactId>maven-docck-plugin</artifactId>
57         <executions>
58           <execution>
59             <id>check docs</id>
60             <goals>
61               <goal>check</goal>
62             </goals>
63           </execution>
64         </executions>
65       </plugin>
66       <plugin>
67         <groupId>org.apache.maven.plugins</groupId>
68         <artifactId>maven-surefire-plugin</artifactId>
69         <configuration>
70           <forkMode>once</forkMode>
71           <childDelegation>false</childDelegation>
72           <systemProperties>
73             <property>
74               <name>eclipse.home</name>
75               <value>${eclipse.home}</value>
76             </property>
77             <property>
78               <name>eclipse.workspace</name>
79               <value>target/testworkspace</value>
80             </property>
81             <property>
82               <name>output.dir</name>
83               <value>target/testmodel</value>
84             </property>
85           </systemProperties>
86           <suiteXmlFiles>
87             <suiteXmlFile>src/test/resources/testng.xml</suiteXmlFile>
88           </suiteXmlFiles>
89         </configuration>
90       </plugin>
91     </plugins>
92   </build>
93   <reporting>
94     <plugins>
95       <plugin>
96         <artifactId>maven-plugin-plugin</artifactId>
97       </plugin>
98       <plugin>
99         <artifactId>maven-javadoc-plugin</artifactId>
100       </plugin>
101     </plugins>
102   </reporting>
103 </project>