Cleaned up code
[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   <properties>
48     <!-- Zeichensatz -->
49     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
50     <!-- Verwendete Versionen -->
51     <hibernate-core.version>4.1.5.SP1</hibernate-core.version>
52     <maven.version>3.0.4</maven.version>
53     <maven-plugin-log4j.version>1.0.1</maven-plugin-log4j.version>
54     <scannotation.version>1.0.2</scannotation.version>
55   </properties>
56
57   <dependencies>
58     <dependency>
59       <groupId>org.apache.maven</groupId>
60       <artifactId>maven-core</artifactId>
61       <version>${maven.version}</version>
62       <exclusions>
63         <exclusion>
64           <groupId>org.codehaus.plexus</groupId>
65           <artifactId>plexus-utils</artifactId>
66         </exclusion>
67       </exclusions>
68     </dependency>
69     <dependency>
70       <groupId>org.apache.maven</groupId>
71       <artifactId>maven-plugin-api</artifactId>
72       <version>${maven.version}</version>
73     </dependency>
74     <dependency>
75       <groupId>org.hibernate</groupId>
76       <artifactId>hibernate-core</artifactId>
77       <version>${hibernate-core.version}</version>
78     </dependency>
79     <dependency>
80       <groupId>net.sf.scannotation</groupId>
81       <artifactId>scannotation</artifactId>
82       <version>${scannotation.version}</version>
83     </dependency>
84     <dependency>
85       <groupId>com.pyx4j</groupId>
86       <artifactId>maven-plugin-log4j</artifactId>
87       <version>${maven-plugin-log4j.version}</version>
88       <exclusions>
89         <exclusion>
90           <groupId>org.apache.maven</groupId>
91           <artifactId>maven-artifact</artifactId>
92         </exclusion>
93         <exclusion>
94           <groupId>org.apache.maven</groupId>
95           <artifactId>maven-plugin-api</artifactId>
96         </exclusion>
97       </exclusions>
98     </dependency>
99   </dependencies>
100
101   <build>
102     <plugins>
103       <plugin>
104         <groupId>org.apache.maven.plugins</groupId>
105         <artifactId>maven-compiler-plugin</artifactId>
106         <configuration>
107           <source>1.6</source>
108           <target>1.6</target>
109           <encoding>utf8</encoding>
110           <showWarnings>true</showWarnings>
111         </configuration>
112       </plugin>
113       <plugin>
114         <groupId>org.apache.maven.plugins</groupId>
115         <artifactId>maven-dependency-plugin</artifactId>
116         <executions>
117           <execution>
118             <id>install</id>
119             <phase>install</phase>
120             <goals>
121               <goal>sources</goal>
122             </goals>
123           </execution>
124         </executions>
125       </plugin>
126       <plugin>
127         <groupId>org.apache.maven.plugins</groupId>
128         <artifactId>maven-source-plugin</artifactId>
129         <executions>
130           <execution>
131             <id>attach-sources</id>
132             <phase>verify</phase>
133             <goals>
134               <goal>jar</goal>
135             </goals>
136           </execution>
137         </executions>
138       </plugin>
139       <plugin>
140         <groupId>org.apache.maven.plugins</groupId>
141         <artifactId>maven-scm-plugin</artifactId>
142         <configuration>
143           <goals>install</goals>
144         </configuration>
145       </plugin>
146     </plugins>
147   </build>
148
149 </project>