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">
4 <modelVersion>4.0.0</modelVersion>
7 <groupId>org.sonatype.oss</groupId>
8 <artifactId>oss-parent</artifactId>
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>
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>
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>
42 <name>Kai Moritz</name>
43 <email>kai@juplo.de</email>
47 <distributionManagement>
50 <url>scp://juplo.de/var/www/juplo/hibernate4-maven-plugin-${project.version}</url>
52 </distributionManagement>
55 <system>Continuum</system>
56 <url>http://juplo.de/continuum/</url>
60 <address>kai@juplo.de</address>
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>
77 <groupId>org.apache.maven</groupId>
78 <artifactId>maven-core</artifactId>
79 <version>${maven.version}</version>
82 <groupId>org.codehaus.plexus</groupId>
83 <artifactId>plexus-utils</artifactId>
88 <groupId>org.apache.maven</groupId>
89 <artifactId>maven-plugin-api</artifactId>
90 <version>${maven.version}</version>
93 <groupId>org.hibernate</groupId>
94 <artifactId>hibernate-core</artifactId>
95 <version>${hibernate-core.version}</version>
98 <groupId>org.hibernate</groupId>
99 <artifactId>hibernate-envers</artifactId>
100 <version>${hibernate-core.version}</version>
103 <groupId>net.sf.scannotation</groupId>
104 <artifactId>scannotation</artifactId>
105 <version>${scannotation.version}</version>
108 <groupId>com.pyx4j</groupId>
109 <artifactId>maven-plugin-log4j</artifactId>
110 <version>${maven-plugin-log4j.version}</version>
113 <groupId>org.apache.maven</groupId>
114 <artifactId>maven-artifact</artifactId>
117 <groupId>org.apache.maven</groupId>
118 <artifactId>maven-plugin-api</artifactId>
127 <groupId>org.apache.maven.plugins</groupId>
128 <artifactId>maven-compiler-plugin</artifactId>
129 <version>2.0.2</version>
133 <encoding>utf8</encoding>
134 <showWarnings>true</showWarnings>
138 <groupId>org.apache.maven.plugins</groupId>
139 <artifactId>maven-dependency-plugin</artifactId>
140 <version>2.1</version>
144 <phase>install</phase>
152 <groupId>org.apache.maven.plugins</groupId>
153 <artifactId>maven-source-plugin</artifactId>
154 <version>2.1.2</version><!-- Should be same version as in oss-parent-7 -->
157 <id>attach-sources</id>
158 <phase>verify</phase>
166 <groupId>org.apache.maven.plugins</groupId>
167 <artifactId>maven-scm-plugin</artifactId>
168 <version>1.7</version>
170 <goals>install</goals>
174 <groupId>org.apache.maven.plugins</groupId>
175 <artifactId>maven-resources-plugin</artifactId>
176 <version>2.3</version>
179 <id>copy-resources</id>
180 <phase>pre-site</phase>
182 <goal>copy-resources</goal>
185 <outputDirectory>${project.build.directory}/filtered-site</outputDirectory>
188 <directory>src/site</directory>
189 <filtering>true</filtering>
202 <artifactId>maven-site-plugin</artifactId>
203 <version>2.1</version>
205 <siteDirectory>${project.build.directory}/filtered-site</siteDirectory>
209 <groupId>org.apache.maven.plugins</groupId>
210 <artifactId>maven-changes-plugin</artifactId>
211 <version>2.7.1</version>
214 <groupId>org.apache.maven.plugins</groupId>
215 <artifactId>maven-javadoc-plugin</artifactId>
216 <version>2.7</version><!-- Should be same version as in oss-parent-7 -->
219 <groupId>org.apache.maven.plugins</groupId>
220 <artifactId>maven-jxr-plugin</artifactId>
221 <version>2.3</version>
224 <groupId>org.apache.maven.plugins</groupId>
225 <artifactId>maven-pmd-plugin</artifactId>
226 <version>2.7.1</version>
228 <linkXref>true</linkXref>
229 <targetJdk>1.5</targetJdk>
233 <groupId>org.apache.maven.plugins</groupId>
234 <artifactId>maven-plugin-plugin</artifactId>
235 <version>3.2</version>