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