3b4fc45302e33e8cf1534208009e9e3c9b17742d
[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.5-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     <contributor>
89       <name>Claus Graf</name>
90       <email>clausgraf@gmail.com</email>
91     </contributor>
92     <contributor>
93       <name>Joachim Van der Auwera</name>
94       <email>joachim@progs.be</email>
95     </contributor>
96   </contributors>
97
98   <distributionManagement>
99     <site>
100       <id>www.juplo.de</id>
101       <url>scp://juplo.de/var/www/juplo/hibernate4-maven-plugin-${project.version}</url>
102     </site>
103   </distributionManagement>
104
105   <ciManagement>
106     <system>Continuum</system>
107     <url>http://juplo.de/continuum/</url>
108     <notifiers>
109       <notifier>
110         <type>mail</type>
111         <address>kai@juplo.de</address>
112       </notifier>
113     </notifiers>
114   </ciManagement>
115
116   <properties>
117     <!-- Zeichensatz -->
118     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
119     <!-- Verwendete Versionen -->
120     <hibernate-core.version>4.3.7.Final</hibernate-core.version>
121     <hibernate-envers.version>4.3.7.Final</hibernate-envers.version>
122     <hibernate-validator.version>4.3.2.Final</hibernate-validator.version>
123     <maven.version>3.2.3</maven.version>
124     <maven-plugin-log4j.version>1.0.1</maven-plugin-log4j.version>
125     <scannotation.version>1.0.3</scannotation.version>
126   </properties>
127
128   <dependencies>
129     <dependency>
130       <groupId>org.apache.maven</groupId>
131       <artifactId>maven-core</artifactId>
132       <version>${maven.version}</version>
133       <exclusions>
134         <exclusion>
135           <groupId>org.codehaus.plexus</groupId>
136           <artifactId>plexus-utils</artifactId>
137         </exclusion>
138       </exclusions>
139     </dependency>
140     <dependency>
141       <groupId>org.apache.maven</groupId>
142       <artifactId>maven-plugin-api</artifactId>
143       <version>${maven.version}</version>
144     </dependency>
145     <dependency>
146       <groupId>org.hibernate</groupId>
147       <artifactId>hibernate-core</artifactId>
148       <version>${hibernate-core.version}</version>
149     </dependency>
150     <dependency>
151       <groupId>org.hibernate</groupId>
152       <artifactId>hibernate-envers</artifactId>
153       <version>${hibernate-envers.version}</version>
154     </dependency>
155     <dependency>
156       <groupId>org.hibernate</groupId>
157       <artifactId>hibernate-validator</artifactId>
158       <version>${hibernate-validator.version}</version>
159     </dependency>
160     <dependency>
161       <groupId>org.scannotation</groupId>
162       <artifactId>scannotation</artifactId>
163       <version>${scannotation.version}</version>
164     </dependency>
165     <dependency>
166       <groupId>com.pyx4j</groupId>
167       <artifactId>maven-plugin-log4j</artifactId>
168       <version>${maven-plugin-log4j.version}</version>
169       <exclusions>
170         <exclusion>
171           <groupId>org.apache.maven</groupId>
172           <artifactId>maven-artifact</artifactId>
173         </exclusion>
174         <exclusion>
175           <groupId>org.apache.maven</groupId>
176           <artifactId>maven-plugin-api</artifactId>
177         </exclusion>
178       </exclusions>
179     </dependency>
180   </dependencies>
181
182   <build>
183     <plugins>
184       <plugin>
185         <groupId>org.apache.maven.plugins</groupId>
186         <artifactId>maven-compiler-plugin</artifactId>
187         <version>2.0.2</version>
188         <configuration>
189           <source>1.6</source>
190           <target>1.6</target>
191           <encoding>utf8</encoding>
192           <showWarnings>true</showWarnings>
193         </configuration>
194       </plugin>
195       <plugin>
196         <groupId>org.apache.maven.plugins</groupId>
197         <artifactId>maven-dependency-plugin</artifactId>
198         <version>2.1</version>
199         <executions>
200           <execution>
201             <id>install</id>
202             <phase>install</phase>
203             <goals>
204               <goal>sources</goal>
205             </goals>
206           </execution>
207         </executions>
208       </plugin>
209       <plugin>
210         <groupId>org.apache.maven.plugins</groupId>
211         <artifactId>maven-source-plugin</artifactId>
212         <version>2.1.2</version><!-- Should be same version as in oss-parent-7 -->
213         <executions>
214           <execution>
215             <id>attach-sources</id>
216             <phase>verify</phase>
217             <goals>
218               <goal>jar</goal>
219             </goals>
220           </execution>
221         </executions>
222       </plugin>
223       <plugin>
224         <groupId>org.apache.maven.plugins</groupId>
225         <artifactId>maven-scm-plugin</artifactId>
226         <version>1.7</version>
227         <configuration>
228           <goals>install</goals>
229         </configuration>
230       </plugin>
231       <plugin>
232         <groupId>org.apache.maven.plugins</groupId>
233         <artifactId>maven-resources-plugin</artifactId>
234         <version>2.3</version>
235         <executions>
236           <execution>
237             <id>copy-resources</id>
238             <phase>pre-site</phase>
239             <goals>
240               <goal>copy-resources</goal>
241             </goals>
242             <configuration>
243               <outputDirectory>${project.build.directory}/filtered-site</outputDirectory>
244               <resources>
245                 <resource>
246                   <directory>src/site</directory>
247                   <filtering>true</filtering>
248                 </resource>
249               </resources>
250             </configuration>
251           </execution>
252         </executions>
253       </plugin>
254       <plugin>
255         <groupId>org.apache.maven.plugins</groupId>
256         <artifactId>maven-plugin-plugin</artifactId>
257         <version>3.2</version>
258         <executions>
259           <execution>
260             <id>generated-helpmojo</id>
261               <goals>
262                 <goal>helpmojo</goal>
263               </goals>
264           </execution>
265         </executions>
266       </plugin>
267       <plugin>
268         <groupId>org.apache.maven.plugins</groupId>
269         <artifactId>maven-invoker-plugin</artifactId>
270         <version>1.8</version>
271         <configuration>
272           <settingsFile>src/it/settings.xml</settingsFile>
273           <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
274           <postBuildHookScript>verify</postBuildHookScript>
275           <addTestClassPath>true</addTestClassPath>
276         </configuration>
277         <executions>
278           <execution>
279             <id>integration-test</id>
280             <goals>
281               <goal>install</goal>
282               <goal>run</goal>
283             </goals>
284           </execution>
285         </executions>
286       </plugin>
287     </plugins>
288     <pluginManagement>
289       <plugins>
290         <plugin>
291           <artifactId>maven-site-plugin</artifactId>
292           <version>3.3</version>
293           <configuration>
294             <siteDirectory>${project.build.directory}/filtered-site</siteDirectory>
295           </configuration>
296           <dependencies>
297             <dependency><!-- add support for ssh/scp -->
298               <groupId>org.apache.maven.wagon</groupId>
299               <artifactId>wagon-ssh</artifactId>
300               <version>1.0</version>
301             </dependency>
302           </dependencies>
303         </plugin>
304       </plugins>
305     </pluginManagement>
306   </build>
307
308   <reporting>
309     <plugins>
310       <plugin>
311         <groupId>org.apache.maven.plugins</groupId>
312         <artifactId>maven-changes-plugin</artifactId>
313         <version>2.7.1</version>
314       </plugin>
315       <plugin>
316         <groupId>org.apache.maven.plugins</groupId>
317         <artifactId>maven-javadoc-plugin</artifactId>
318         <version>2.7</version><!-- Should be same version as in oss-parent-7 -->
319       </plugin>
320       <plugin>
321         <groupId>org.apache.maven.plugins</groupId>
322         <artifactId>maven-jxr-plugin</artifactId>
323         <version>2.3</version>
324       </plugin>
325       <plugin>
326         <groupId>org.apache.maven.plugins</groupId>
327         <artifactId>maven-pmd-plugin</artifactId>
328         <version>2.7.1</version>
329         <configuration>
330           <linkXref>true</linkXref>
331           <targetJdk>1.5</targetJdk>
332         </configuration>
333       </plugin>
334       <plugin>
335         <groupId>org.apache.maven.plugins</groupId>
336         <artifactId>maven-plugin-plugin</artifactId>
337         <version>3.2</version>
338       </plugin>
339     </plugins>
340   </reporting>
341
342 </project>