[maven-release-plugin] prepare for next development iteration
[mapasuta/maven-emfgen-plugin.git] / pom.xml
blob5c6f5ff02f2b0176be8b3ed458cffaad622c7ce2
1 <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">
2   <modelVersion>4.0.0</modelVersion>
3   <parent>
4     <groupId>net.sf.mapasuta</groupId>
5     <artifactId>umbrella</artifactId>
6     <version>0.0.9</version>
7     <relativePath>../umbrella/pom.xml</relativePath>
8   </parent>
9   <groupId>net.sf.mapasuta.build.maven.plugins</groupId>
10   <artifactId>maven-emfgen-plugin</artifactId>
11   <packaging>maven-plugin</packaging>
12   <version>1.2-SNAPSHOT</version>
13   <name>Maven EMF Generator Plugin</name>
14   <description>Generates EMF GenModel and Model Sources</description>
15   <scm>
16     <developerConnection>scm:git:git://repo.or.cz/mapasuta/maven-emfgen-plugin.git</developerConnection>
17     <url>http://repo.or.cz/w/mapasuta/maven-emfgen-plugin.git</url>
18   </scm>
19   <dependencies>
20     <dependency>
21       <groupId>org.apache.maven</groupId>
22       <artifactId>maven-plugin-api</artifactId>
23       <version>2.0.9</version>
24       <scope>compile</scope>
25     </dependency>
26     <dependency>
27       <groupId>org.apache.maven</groupId>
28       <artifactId>maven-project</artifactId>
29       <version>2.0.9</version>
30       <scope>compile</scope>
31     </dependency>
32     <dependency>
33       <groupId>org.codehaus.plexus</groupId>
34       <artifactId>plexus-utils</artifactId>
35       <version>1.5.6</version>
36       <scope>compile</scope>
37     </dependency>
38     <dependency>
39       <groupId>org.testng</groupId>
40       <artifactId>testng</artifactId>
41       <version>5.1</version>
42       <scope>test</scope>
43       <classifier>jdk15</classifier>
44     </dependency>
45   </dependencies>
46   <prerequisites>
47     <maven>2.0.9</maven>
48   </prerequisites>
49   <build>
50     <plugins>
51       <plugin>
52         <groupId>org.apache.maven.plugins</groupId>
53         <artifactId>maven-plugin-plugin</artifactId>
54         <version>2.4.3</version>
55         <executions>
56           <execution>
57             <id>generated-helpmojo</id>
58             <goals><goal>helpmojo</goal></goals>
59           </execution>
60         </executions>
61       </plugin>
62       <plugin>
63         <groupId>org.apache.maven.plugins</groupId>
64         <artifactId>maven-project-info-reports-plugin</artifactId>
65         <version>2.1</version>
66       </plugin>
67       <plugin>
68         <groupId>org.apache.maven.plugins</groupId>
69         <artifactId>maven-docck-plugin</artifactId>
70         <version>1.0</version>
71         <executions>
72           <execution>
73             <id>check docs</id>
74             <goals>
75               <goal>check</goal>
76             </goals>
77           </execution>
78         </executions>
79       </plugin>
80       <plugin>
81         <groupId>org.apache.maven.plugins</groupId>
82         <artifactId>maven-plugin-plugin</artifactId>
83         <version>2.4.3</version>
84       </plugin>
85       <plugin>
86         <groupId>org.apache.maven.plugins</groupId>
87         <artifactId>maven-surefire-plugin</artifactId>
88         <version>2.4.3</version>
89         <configuration>
90           <forkMode>once</forkMode>
91           <childDelegation>false</childDelegation>
92           <systemProperties>
93             <property>
94               <name>eclipse.home</name>
95               <value>${eclipse.home}</value>
96             </property>
97             <property>
98               <name>eclipse.workspace</name>
99               <value>target/testworkspace</value>
100             </property>
101             <property>
102               <name>output.dir</name>
103               <value>target/testmodel</value>
104             </property>
105           </systemProperties>
106           <suiteXmlFiles>
107             <suiteXmlFile>src/test/resources/testng.xml</suiteXmlFile>
108           </suiteXmlFiles>
109         </configuration>
110       </plugin>
111     </plugins>
112   </build>
113   <reporting>
114     <plugins>
115       <plugin>
116         <groupId>org.apache.maven.plugins</groupId>
117         <artifactId>maven-docck-plugin</artifactId>
118         <version>1.0</version>
119       </plugin>
120       <plugin>
121         <groupId>org.apache.maven.plugins</groupId>
122         <artifactId>maven-javadoc-plugin</artifactId>
123         <version>2.5</version>
124       </plugin>
125       <plugin>
126         <groupId>org.apache.maven.plugins</groupId>
127         <artifactId>maven-plugin-plugin</artifactId>
128         <version>2.4.3</version>
129       </plugin>
130       <plugin>
131         <groupId>org.apache.maven.plugins</groupId>
132         <artifactId>maven-project-info-reports-plugin</artifactId>
133         <version>2.1</version>
134         <reportSets>
135           <reportSet>
136             <reports>
137               <report>dependencies</report>
138               <report>dependency-convergence</report>
139               <report>dependency-management</report>
140               <report>project-team</report>
141               <report>license</report>
142               <report>scm</report>
143               <report>issue-tracking</report>
144               <report>mailing-list</report>
145               <report>index</report>
146               <report>plugin-management</report>
147               <report>summary</report>
148             </reports>
149           </reportSet>
150         </reportSets>
151       </plugin>
152       <plugin>
153         <groupId>org.apache.maven.plugins</groupId>
154         <artifactId>maven-surefire-report-plugin</artifactId>
155         <version>2.4.3</version>
156       </plugin>
157     </plugins>
158   </reporting>
159 </project>