Generated schema now corresponds to hibernate validators set on the beans
[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.hibernate</groupId>
136       <artifactId>hibernate-validator</artifactId>
137       <version>4.3.1.Final</version>
138     </dependency>
139     <dependency>
140       <groupId>org.scannotation</groupId>
141       <artifactId>scannotation</artifactId>
142       <version>${scannotation.version}</version>
143     </dependency>
144     <dependency>
145       <groupId>com.pyx4j</groupId>
146       <artifactId>maven-plugin-log4j</artifactId>
147       <version>${maven-plugin-log4j.version}</version>
148       <exclusions>
149         <exclusion>
150           <groupId>org.apache.maven</groupId>
151           <artifactId>maven-artifact</artifactId>
152         </exclusion>
153         <exclusion>
154           <groupId>org.apache.maven</groupId>
155           <artifactId>maven-plugin-api</artifactId>
156         </exclusion>
157       </exclusions>
158     </dependency>
159   </dependencies>
160
161   <build>
162     <plugins>
163       <plugin>
164         <groupId>org.apache.maven.plugins</groupId>
165         <artifactId>maven-compiler-plugin</artifactId>
166         <version>2.0.2</version>
167         <configuration>
168           <source>1.6</source>
169           <target>1.6</target>
170           <encoding>utf8</encoding>
171           <showWarnings>true</showWarnings>
172         </configuration>
173       </plugin>
174       <plugin>
175         <groupId>org.apache.maven.plugins</groupId>
176         <artifactId>maven-dependency-plugin</artifactId>
177         <version>2.1</version>
178         <executions>
179           <execution>
180             <id>install</id>
181             <phase>install</phase>
182             <goals>
183               <goal>sources</goal>
184             </goals>
185           </execution>
186         </executions>
187       </plugin>
188       <plugin>
189         <groupId>org.apache.maven.plugins</groupId>
190         <artifactId>maven-source-plugin</artifactId>
191         <version>2.1.2</version><!-- Should be same version as in oss-parent-7 -->
192         <executions>
193           <execution>
194             <id>attach-sources</id>
195             <phase>verify</phase>
196             <goals>
197               <goal>jar</goal>
198             </goals>
199           </execution>
200         </executions>
201       </plugin>
202       <plugin>
203         <groupId>org.apache.maven.plugins</groupId>
204         <artifactId>maven-scm-plugin</artifactId>
205         <version>1.7</version>
206         <configuration>
207           <goals>install</goals>
208         </configuration>
209       </plugin>
210       <plugin>
211         <groupId>org.apache.maven.plugins</groupId>
212         <artifactId>maven-resources-plugin</artifactId>
213         <version>2.3</version>
214         <executions>
215           <execution>
216             <id>copy-resources</id>
217             <phase>pre-site</phase>
218             <goals>
219               <goal>copy-resources</goal>
220             </goals>
221             <configuration>
222               <outputDirectory>${project.build.directory}/filtered-site</outputDirectory>
223               <resources>
224                 <resource>
225                   <directory>src/site</directory>
226                   <filtering>true</filtering>
227                 </resource>
228               </resources>
229             </configuration>
230           </execution>
231         </executions>
232       </plugin>
233       <plugin>
234         <groupId>org.apache.maven.plugins</groupId>
235         <artifactId>maven-plugin-plugin</artifactId>
236         <version>3.2</version>
237         <executions>
238           <execution>
239             <id>generated-helpmojo</id>
240               <goals>
241                 <goal>helpmojo</goal>
242               </goals>
243           </execution>
244         </executions>
245       </plugin>
246     </plugins>
247     <pluginManagement>
248       <plugins>
249         <plugin>
250           <artifactId>maven-site-plugin</artifactId>
251           <version>3.3</version>
252           <dependencies>
253             <dependency><!-- add support for ssh/scp -->
254               <groupId>org.apache.maven.wagon</groupId>
255               <artifactId>wagon-ssh</artifactId>
256               <version>1.0</version>
257             </dependency>
258           </dependencies>
259         </plugin>
260       </plugins>
261     </pluginManagement>
262   </build>
263
264   <reporting>
265     <plugins>
266       <plugin>
267         <artifactId>maven-site-plugin</artifactId>
268         <version>3.3</version>
269         <configuration>
270           <siteDirectory>${project.build.directory}/filtered-site</siteDirectory>
271         </configuration>
272       </plugin>
273       <plugin>
274         <groupId>org.apache.maven.plugins</groupId>
275         <artifactId>maven-changes-plugin</artifactId>
276         <version>2.7.1</version>
277       </plugin>
278       <plugin>
279         <groupId>org.apache.maven.plugins</groupId>
280         <artifactId>maven-javadoc-plugin</artifactId>
281         <version>2.7</version><!-- Should be same version as in oss-parent-7 -->
282       </plugin>
283       <plugin>
284         <groupId>org.apache.maven.plugins</groupId>
285         <artifactId>maven-jxr-plugin</artifactId>
286         <version>2.3</version>
287       </plugin>
288       <plugin>
289         <groupId>org.apache.maven.plugins</groupId>
290         <artifactId>maven-pmd-plugin</artifactId>
291         <version>2.7.1</version>
292         <configuration>
293           <linkXref>true</linkXref>
294           <targetJdk>1.5</targetJdk>
295         </configuration>
296       </plugin>
297       <plugin>
298         <groupId>org.apache.maven.plugins</groupId>
299         <artifactId>maven-plugin-plugin</artifactId>
300         <version>3.2</version>
301       </plugin>
302     </plugins>
303   </reporting>
304
305 </project>