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