13fcd53ac6b90773ae26dcc0bfada7916d9bb9f3
[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-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/cache/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   </build>
217
218   <reporting>
219     <plugins>
220       <plugin>
221         <artifactId>maven-site-plugin</artifactId>
222         <version>2.1</version>
223         <configuration>
224           <siteDirectory>${project.build.directory}/filtered-site</siteDirectory>
225         </configuration>
226       </plugin>
227       <plugin>
228         <groupId>org.apache.maven.plugins</groupId>
229         <artifactId>maven-changes-plugin</artifactId>
230         <version>2.7.1</version>
231       </plugin>
232       <plugin>
233         <groupId>org.apache.maven.plugins</groupId>
234         <artifactId>maven-javadoc-plugin</artifactId>
235         <version>2.7</version><!-- Should be same version as in oss-parent-7 -->
236       </plugin>
237       <plugin>
238         <groupId>org.apache.maven.plugins</groupId>
239         <artifactId>maven-jxr-plugin</artifactId>
240         <version>2.3</version>
241       </plugin>
242       <plugin>
243         <groupId>org.apache.maven.plugins</groupId>
244         <artifactId>maven-pmd-plugin</artifactId>
245         <version>2.7.1</version>
246         <configuration>
247           <linkXref>true</linkXref>
248           <targetJdk>1.5</targetJdk>
249         </configuration>
250       </plugin>
251       <plugin>
252         <groupId>org.apache.maven.plugins</groupId>
253         <artifactId>maven-plugin-plugin</artifactId>
254         <version>3.2</version>
255       </plugin>
256     </plugins>
257   </reporting>
258
259 </project>