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