Minimal required informations for all plugins: groupId, artifactId, version
[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-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   <distributionManagement>
48     <site>
49       <id>www.juplo.de</id>
50       <url>scp://juplo.de/var/www/juplo/hibernate4-maven-plugin</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.0.4</version>
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     </plugins>
169   </build>
170
171   <reporting>
172     <plugins>
173       <plugin>
174         <groupId>org.apache.maven.plugins</groupId>
175         <artifactId>maven-changes-plugin</artifactId>
176         <version>2.7.1</version>
177       </plugin>
178       <plugin>
179         <groupId>org.apache.maven.plugins</groupId>
180         <artifactId>maven-javadoc-plugin</artifactId>
181         <version>2.8.1</version>
182       </plugin>
183       <plugin>
184         <groupId>org.apache.maven.plugins</groupId>
185         <artifactId>maven-jxr-plugin</artifactId>
186         <version>2.3</version>
187       </plugin>
188       <plugin>
189         <groupId>org.apache.maven.plugins</groupId>
190         <artifactId>maven-pmd-plugin</artifactId>
191         <version>2.7.1</version>
192         <configuration>
193           <linkXref>true</linkXref>
194           <targetJdk>1.5</targetJdk>
195         </configuration>
196       </plugin>
197       <plugin>
198         <groupId>org.apache.maven.plugins</groupId>
199         <artifactId>maven-plugin-plugin</artifactId>
200         <version>3.2</version>
201       </plugin>
202     </plugins>
203   </reporting>
204
205 </project>