Upgrade to Hibernate 4.3.0.Final
[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   </contributors>
77
78   <distributionManagement>
79     <site>
80       <id>www.juplo.de</id>
81       <url>scp://juplo.de/var/www/juplo/hibernate4-maven-plugin-${project.version}</url>
82     </site>
83   </distributionManagement>
84
85   <ciManagement>
86     <system>Continuum</system>
87     <url>http://juplo.de/continuum/</url>
88     <notifiers>
89       <notifier>
90         <type>mail</type>
91         <address>kai@juplo.de</address>
92       </notifier>
93     </notifiers>
94   </ciManagement>
95
96   <properties>
97     <!-- Zeichensatz -->
98     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
99     <!-- Verwendete Versionen -->
100     <hibernate-core.version>4.3.0.Final</hibernate-core.version>
101     <hibernate-envers.version>4.3.0.Final</hibernate-envers.version>
102     <maven.version>3.0.4</maven.version>
103     <maven-plugin-log4j.version>1.0.1</maven-plugin-log4j.version>
104     <scannotation.version>1.0.3</scannotation.version>
105   </properties>
106
107   <dependencies>
108     <dependency>
109       <groupId>org.apache.maven</groupId>
110       <artifactId>maven-core</artifactId>
111       <version>${maven.version}</version>
112       <exclusions>
113         <exclusion>
114           <groupId>org.codehaus.plexus</groupId>
115           <artifactId>plexus-utils</artifactId>
116         </exclusion>
117       </exclusions>
118     </dependency>
119     <dependency>
120       <groupId>org.apache.maven</groupId>
121       <artifactId>maven-plugin-api</artifactId>
122       <version>${maven.version}</version>
123     </dependency>
124     <dependency>
125       <groupId>org.hibernate</groupId>
126       <artifactId>hibernate-core</artifactId>
127       <version>${hibernate-core.version}</version>
128     </dependency>
129     <dependency>
130       <groupId>org.hibernate</groupId>
131       <artifactId>hibernate-envers</artifactId>
132       <version>${hibernate-envers.version}</version>
133     </dependency>
134     <dependency>
135       <groupId>org.scannotation</groupId>
136       <artifactId>scannotation</artifactId>
137       <version>${scannotation.version}</version>
138     </dependency>
139     <dependency>
140       <groupId>com.pyx4j</groupId>
141       <artifactId>maven-plugin-log4j</artifactId>
142       <version>${maven-plugin-log4j.version}</version>
143       <exclusions>
144         <exclusion>
145           <groupId>org.apache.maven</groupId>
146           <artifactId>maven-artifact</artifactId>
147         </exclusion>
148         <exclusion>
149           <groupId>org.apache.maven</groupId>
150           <artifactId>maven-plugin-api</artifactId>
151         </exclusion>
152       </exclusions>
153     </dependency>
154   </dependencies>
155
156   <build>
157     <plugins>
158       <plugin>
159         <groupId>org.apache.maven.plugins</groupId>
160         <artifactId>maven-compiler-plugin</artifactId>
161         <version>2.0.2</version>
162         <configuration>
163           <source>1.6</source>
164           <target>1.6</target>
165           <encoding>utf8</encoding>
166           <showWarnings>true</showWarnings>
167         </configuration>
168       </plugin>
169       <plugin>
170         <groupId>org.apache.maven.plugins</groupId>
171         <artifactId>maven-dependency-plugin</artifactId>
172         <version>2.1</version>
173         <executions>
174           <execution>
175             <id>install</id>
176             <phase>install</phase>
177             <goals>
178               <goal>sources</goal>
179             </goals>
180           </execution>
181         </executions>
182       </plugin>
183       <plugin>
184         <groupId>org.apache.maven.plugins</groupId>
185         <artifactId>maven-source-plugin</artifactId>
186         <version>2.1.2</version><!-- Should be same version as in oss-parent-7 -->
187         <executions>
188           <execution>
189             <id>attach-sources</id>
190             <phase>verify</phase>
191             <goals>
192               <goal>jar</goal>
193             </goals>
194           </execution>
195         </executions>
196       </plugin>
197       <plugin>
198         <groupId>org.apache.maven.plugins</groupId>
199         <artifactId>maven-scm-plugin</artifactId>
200         <version>1.7</version>
201         <configuration>
202           <goals>install</goals>
203         </configuration>
204       </plugin>
205       <plugin>
206         <groupId>org.apache.maven.plugins</groupId>
207         <artifactId>maven-resources-plugin</artifactId>
208         <version>2.3</version>
209         <executions>
210           <execution>
211             <id>copy-resources</id>
212             <phase>pre-site</phase>
213             <goals>
214               <goal>copy-resources</goal>
215             </goals>
216             <configuration>
217               <outputDirectory>${project.build.directory}/filtered-site</outputDirectory>
218               <resources>
219                 <resource>
220                   <directory>src/site</directory>
221                   <filtering>true</filtering>
222                 </resource>
223               </resources>
224             </configuration>
225           </execution>
226         </executions>
227       </plugin>
228       <plugin>
229         <groupId>org.apache.maven.plugins</groupId>
230         <artifactId>maven-plugin-plugin</artifactId>
231         <version>3.2</version>
232         <executions>
233           <execution>
234             <id>generated-helpmojo</id>
235               <goals>
236                 <goal>helpmojo</goal>
237               </goals>
238           </execution>
239         </executions>
240       </plugin>
241     </plugins>
242     <pluginManagement>
243       <plugins>
244         <plugin>
245           <artifactId>maven-site-plugin</artifactId>
246           <version>3.3</version>
247           <dependencies>
248             <dependency><!-- add support for ssh/scp -->
249               <groupId>org.apache.maven.wagon</groupId>
250               <artifactId>wagon-ssh</artifactId>
251               <version>1.0</version>
252             </dependency>
253           </dependencies>
254         </plugin>
255       </plugins>
256     </pluginManagement>
257   </build>
258
259   <reporting>
260     <plugins>
261       <plugin>
262         <artifactId>maven-site-plugin</artifactId>
263         <version>3.3</version>
264         <configuration>
265           <siteDirectory>${project.build.directory}/filtered-site</siteDirectory>
266         </configuration>
267       </plugin>
268       <plugin>
269         <groupId>org.apache.maven.plugins</groupId>
270         <artifactId>maven-changes-plugin</artifactId>
271         <version>2.7.1</version>
272       </plugin>
273       <plugin>
274         <groupId>org.apache.maven.plugins</groupId>
275         <artifactId>maven-javadoc-plugin</artifactId>
276         <version>2.7</version><!-- Should be same version as in oss-parent-7 -->
277       </plugin>
278       <plugin>
279         <groupId>org.apache.maven.plugins</groupId>
280         <artifactId>maven-jxr-plugin</artifactId>
281         <version>2.3</version>
282       </plugin>
283       <plugin>
284         <groupId>org.apache.maven.plugins</groupId>
285         <artifactId>maven-pmd-plugin</artifactId>
286         <version>2.7.1</version>
287         <configuration>
288           <linkXref>true</linkXref>
289           <targetJdk>1.5</targetJdk>
290         </configuration>
291       </plugin>
292       <plugin>
293         <groupId>org.apache.maven.plugins</groupId>
294         <artifactId>maven-plugin-plugin</artifactId>
295         <version>3.2</version>
296       </plugin>
297     </plugins>
298   </reporting>
299
300 </project>