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