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