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.3-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/lib/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>
49 <name>Adriano Machado</name>
50 <email>adriano.m.machado@hotmail.com</email>
53 <name>Lorenzo Nicora</name>
54 <email>lorenzo.nicora@nicus.it</email>
57 <name>Eduard Szente</name>
58 <email>eduard.szente@gmail.com</email>
61 <name>Stephen Johnson</name>
62 <email>stejohns@redhat.com</email>
66 <distributionManagement>
69 <url>scp://juplo.de/var/www/juplo/hibernate4-maven-plugin-${project.version}</url>
71 </distributionManagement>
74 <system>Continuum</system>
75 <url>http://juplo.de/continuum/</url>
79 <address>kai@juplo.de</address>
86 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
87 <!-- Verwendete Versionen -->
88 <hibernate-core.version>4.2.5.Final</hibernate-core.version>
89 <maven.version>3.0.4</maven.version>
90 <maven-plugin-log4j.version>1.0.1</maven-plugin-log4j.version>
91 <scannotation.version>1.0.2</scannotation.version>
96 <groupId>org.apache.maven</groupId>
97 <artifactId>maven-core</artifactId>
98 <version>${maven.version}</version>
101 <groupId>org.codehaus.plexus</groupId>
102 <artifactId>plexus-utils</artifactId>
107 <groupId>org.apache.maven</groupId>
108 <artifactId>maven-plugin-api</artifactId>
109 <version>${maven.version}</version>
112 <groupId>org.hibernate</groupId>
113 <artifactId>hibernate-core</artifactId>
114 <version>${hibernate-core.version}</version>
117 <groupId>net.sf.scannotation</groupId>
118 <artifactId>scannotation</artifactId>
119 <version>${scannotation.version}</version>
122 <groupId>com.pyx4j</groupId>
123 <artifactId>maven-plugin-log4j</artifactId>
124 <version>${maven-plugin-log4j.version}</version>
127 <groupId>org.apache.maven</groupId>
128 <artifactId>maven-artifact</artifactId>
131 <groupId>org.apache.maven</groupId>
132 <artifactId>maven-plugin-api</artifactId>
141 <groupId>org.apache.maven.plugins</groupId>
142 <artifactId>maven-compiler-plugin</artifactId>
143 <version>2.0.2</version>
147 <encoding>utf8</encoding>
148 <showWarnings>true</showWarnings>
152 <groupId>org.apache.maven.plugins</groupId>
153 <artifactId>maven-dependency-plugin</artifactId>
154 <version>2.1</version>
158 <phase>install</phase>
166 <groupId>org.apache.maven.plugins</groupId>
167 <artifactId>maven-source-plugin</artifactId>
168 <version>2.1.2</version><!-- Should be same version as in oss-parent-7 -->
171 <id>attach-sources</id>
172 <phase>verify</phase>
180 <groupId>org.apache.maven.plugins</groupId>
181 <artifactId>maven-scm-plugin</artifactId>
182 <version>1.7</version>
184 <goals>install</goals>
188 <groupId>org.apache.maven.plugins</groupId>
189 <artifactId>maven-resources-plugin</artifactId>
190 <version>2.3</version>
193 <id>copy-resources</id>
194 <phase>pre-site</phase>
196 <goal>copy-resources</goal>
199 <outputDirectory>${project.build.directory}/filtered-site</outputDirectory>
202 <directory>src/site</directory>
203 <filtering>true</filtering>
211 <groupId>org.apache.maven.plugins</groupId>
212 <artifactId>maven-plugin-plugin</artifactId>
213 <version>3.2</version>
216 <id>generated-helpmojo</id>
218 <goal>helpmojo</goal>
229 <artifactId>maven-site-plugin</artifactId>
230 <version>2.1</version>
232 <siteDirectory>${project.build.directory}/filtered-site</siteDirectory>
236 <groupId>org.apache.maven.plugins</groupId>
237 <artifactId>maven-changes-plugin</artifactId>
238 <version>2.7.1</version>
241 <groupId>org.apache.maven.plugins</groupId>
242 <artifactId>maven-javadoc-plugin</artifactId>
243 <version>2.7</version><!-- Should be same version as in oss-parent-7 -->
246 <groupId>org.apache.maven.plugins</groupId>
247 <artifactId>maven-jxr-plugin</artifactId>
248 <version>2.3</version>
251 <groupId>org.apache.maven.plugins</groupId>
252 <artifactId>maven-pmd-plugin</artifactId>
253 <version>2.7.1</version>
255 <linkXref>true</linkXref>
256 <targetJdk>1.5</targetJdk>
260 <groupId>org.apache.maven.plugins</groupId>
261 <artifactId>maven-plugin-plugin</artifactId>
262 <version>3.2</version>