Added last contributors to the POM
[hibernate4-maven-plugin] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3
4   <modelVersion>4.0.0</modelVersion>
5
6   <parent>
7     <groupId>org.sonatype.oss</groupId>
8     <artifactId>oss-parent</artifactId>
9     <version>7</version>
10   </parent>
11
12   <groupId>de.juplo</groupId>
13   <artifactId>hibernate4-maven-plugin</artifactId>
14   <name>Hibernate 4 Maven Plugin</name>
15   <description>Plugin for generating a database-schema from Hibernate-4-Mapping-Annotations</description>
16   <version>1.0.4-SNAPSHOT</version>
17   <packaging>maven-plugin</packaging>
18   <url>http://juplo.de/hibernate4-maven-plugin</url>
19
20   <prerequisites>
21     <maven>2.0.6</maven>
22   </prerequisites>
23
24   <licenses>
25     <license>
26       <name>The Apache Software License, Version 2.0</name>
27       <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
28       <distribution>repo</distribution>
29       <comments>A business-friendly OSS license</comments>
30     </license>
31   </licenses>
32
33   <scm>
34     <connection>scm:git:http://juplo.de/git/hibernate4-maven-plugin</connection>
35     <developerConnection>scm:git:ssh://juplo.de:/var/lib/git/juplo/hibernate4-maven-plugin</developerConnection>
36     <url>http://juplo.de/gitweb/?p=hibernate4-maven-plugin;a=summary</url>
37   </scm>
38
39   <developers>
40     <developer>
41       <id>kai</id>
42       <name>Kai Moritz</name>
43       <email>kai@juplo.de</email>
44     </developer>
45   </developers>
46
47   <contributors>
48     <contributor>
49       <name>Adriano Machado</name>
50       <email>adriano.m.machado@hotmail.com</email>
51     </contributor>
52     <contributor>
53       <name>Lorenzo Nicora</name>
54       <email>lorenzo.nicora@nicus.it</email>
55     </contributor>
56     <contributor>
57       <name>Eduard Szente</name>
58       <email>eduard.szente@gmail.com</email>
59     </contributor>
60     <contributor>
61       <name>Stephen Johnson</name>
62       <email>stejohns@redhat.com</email>
63     </contributor>
64     <contributor>
65       <name>Victor Tatai</name>
66       <email>vtatai@gmail.com</email>
67     </contributor>
68     <contributor>
69       <name>Erik-Berndt Scheper</name>
70       <email>erik.berndt.scheper@gmail.com</email>
71     </contributor>
72     <contributor>
73       <name>Guido Wimmel</name>
74       <email>Wimmel.Guido@swm.de</email>
75     </contributor>
76     <contributor>
77       <name>Joel Johnson</name>
78       <email>mrjoel@lixil.net</email>
79     </contributor>
80     <contributor>
81       <name>Paul K. Moore</name>
82       <email>paulkmoore@gmail.com</email>
83     </contributor>
84     <contributor>
85       <name>Mark Robinson</name>
86       <email>mark@mrobinson.ca</email>
87     </contributor>
88   </contributors>
89
90   <distributionManagement>
91     <site>
92       <id>www.juplo.de</id>
93       <url>scp://juplo.de/var/www/juplo/hibernate4-maven-plugin-${project.version}</url>
94     </site>
95   </distributionManagement>
96
97   <ciManagement>
98     <system>Continuum</system>
99     <url>http://juplo.de/continuum/</url>
100     <notifiers>
101       <notifier>
102         <type>mail</type>
103         <address>kai@juplo.de</address>
104       </notifier>
105     </notifiers>
106   </ciManagement>
107
108   <properties>
109     <!-- Zeichensatz -->
110     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
111     <!-- Verwendete Versionen -->
112     <hibernate-core.version>4.3.0.Final</hibernate-core.version>
113     <hibernate-envers.version>4.3.0.Final</hibernate-envers.version>
114     <maven.version>3.0.4</maven.version>
115     <maven-plugin-log4j.version>1.0.1</maven-plugin-log4j.version>
116     <scannotation.version>1.0.3</scannotation.version>
117   </properties>
118
119   <dependencies>
120     <dependency>
121       <groupId>org.apache.maven</groupId>
122       <artifactId>maven-core</artifactId>
123       <version>${maven.version}</version>
124       <exclusions>
125         <exclusion>
126           <groupId>org.codehaus.plexus</groupId>
127           <artifactId>plexus-utils</artifactId>
128         </exclusion>
129       </exclusions>
130     </dependency>
131     <dependency>
132       <groupId>org.apache.maven</groupId>
133       <artifactId>maven-plugin-api</artifactId>
134       <version>${maven.version}</version>
135     </dependency>
136     <dependency>
137       <groupId>org.hibernate</groupId>
138       <artifactId>hibernate-core</artifactId>
139       <version>${hibernate-core.version}</version>
140     </dependency>
141     <dependency>
142       <groupId>org.hibernate</groupId>
143       <artifactId>hibernate-envers</artifactId>
144       <version>${hibernate-envers.version}</version>
145     </dependency>
146     <dependency>
147       <groupId>org.hibernate</groupId>
148       <artifactId>hibernate-validator</artifactId>
149       <version>4.3.1.Final</version>
150     </dependency>
151     <dependency>
152       <groupId>org.scannotation</groupId>
153       <artifactId>scannotation</artifactId>
154       <version>${scannotation.version}</version>
155     </dependency>
156     <dependency>
157       <groupId>com.pyx4j</groupId>
158       <artifactId>maven-plugin-log4j</artifactId>
159       <version>${maven-plugin-log4j.version}</version>
160       <exclusions>
161         <exclusion>
162           <groupId>org.apache.maven</groupId>
163           <artifactId>maven-artifact</artifactId>
164         </exclusion>
165         <exclusion>
166           <groupId>org.apache.maven</groupId>
167           <artifactId>maven-plugin-api</artifactId>
168         </exclusion>
169       </exclusions>
170     </dependency>
171   </dependencies>
172
173   <build>
174     <plugins>
175       <plugin>
176         <groupId>org.apache.maven.plugins</groupId>
177         <artifactId>maven-compiler-plugin</artifactId>
178         <version>2.0.2</version>
179         <configuration>
180           <source>1.6</source>
181           <target>1.6</target>
182           <encoding>utf8</encoding>
183           <showWarnings>true</showWarnings>
184         </configuration>
185       </plugin>
186       <plugin>
187         <groupId>org.apache.maven.plugins</groupId>
188         <artifactId>maven-dependency-plugin</artifactId>
189         <version>2.1</version>
190         <executions>
191           <execution>
192             <id>install</id>
193             <phase>install</phase>
194             <goals>
195               <goal>sources</goal>
196             </goals>
197           </execution>
198         </executions>
199       </plugin>
200       <plugin>
201         <groupId>org.apache.maven.plugins</groupId>
202         <artifactId>maven-source-plugin</artifactId>
203         <version>2.1.2</version><!-- Should be same version as in oss-parent-7 -->
204         <executions>
205           <execution>
206             <id>attach-sources</id>
207             <phase>verify</phase>
208             <goals>
209               <goal>jar</goal>
210             </goals>
211           </execution>
212         </executions>
213       </plugin>
214       <plugin>
215         <groupId>org.apache.maven.plugins</groupId>
216         <artifactId>maven-scm-plugin</artifactId>
217         <version>1.7</version>
218         <configuration>
219           <goals>install</goals>
220         </configuration>
221       </plugin>
222       <plugin>
223         <groupId>org.apache.maven.plugins</groupId>
224         <artifactId>maven-resources-plugin</artifactId>
225         <version>2.3</version>
226         <executions>
227           <execution>
228             <id>copy-resources</id>
229             <phase>pre-site</phase>
230             <goals>
231               <goal>copy-resources</goal>
232             </goals>
233             <configuration>
234               <outputDirectory>${project.build.directory}/filtered-site</outputDirectory>
235               <resources>
236                 <resource>
237                   <directory>src/site</directory>
238                   <filtering>true</filtering>
239                 </resource>
240               </resources>
241             </configuration>
242           </execution>
243         </executions>
244       </plugin>
245       <plugin>
246         <groupId>org.apache.maven.plugins</groupId>
247         <artifactId>maven-plugin-plugin</artifactId>
248         <version>3.2</version>
249         <executions>
250           <execution>
251             <id>generated-helpmojo</id>
252               <goals>
253                 <goal>helpmojo</goal>
254               </goals>
255           </execution>
256         </executions>
257       </plugin>
258     </plugins>
259     <pluginManagement>
260       <plugins>
261         <plugin>
262           <artifactId>maven-site-plugin</artifactId>
263           <version>3.3</version>
264           <dependencies>
265             <dependency><!-- add support for ssh/scp -->
266               <groupId>org.apache.maven.wagon</groupId>
267               <artifactId>wagon-ssh</artifactId>
268               <version>1.0</version>
269             </dependency>
270           </dependencies>
271         </plugin>
272       </plugins>
273     </pluginManagement>
274   </build>
275
276   <reporting>
277     <plugins>
278       <plugin>
279         <artifactId>maven-site-plugin</artifactId>
280         <version>3.3</version>
281         <configuration>
282           <siteDirectory>${project.build.directory}/filtered-site</siteDirectory>
283         </configuration>
284       </plugin>
285       <plugin>
286         <groupId>org.apache.maven.plugins</groupId>
287         <artifactId>maven-changes-plugin</artifactId>
288         <version>2.7.1</version>
289       </plugin>
290       <plugin>
291         <groupId>org.apache.maven.plugins</groupId>
292         <artifactId>maven-javadoc-plugin</artifactId>
293         <version>2.7</version><!-- Should be same version as in oss-parent-7 -->
294       </plugin>
295       <plugin>
296         <groupId>org.apache.maven.plugins</groupId>
297         <artifactId>maven-jxr-plugin</artifactId>
298         <version>2.3</version>
299       </plugin>
300       <plugin>
301         <groupId>org.apache.maven.plugins</groupId>
302         <artifactId>maven-pmd-plugin</artifactId>
303         <version>2.7.1</version>
304         <configuration>
305           <linkXref>true</linkXref>
306           <targetJdk>1.5</targetJdk>
307         </configuration>
308       </plugin>
309       <plugin>
310         <groupId>org.apache.maven.plugins</groupId>
311         <artifactId>maven-plugin-plugin</artifactId>
312         <version>3.2</version>
313       </plugin>
314     </plugins>
315   </reporting>
316
317 </project>