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