Implemented and Instant-to-Date converter
[jpa-converters] / pom.xml
1 <project
2     xmlns="http://maven.apache.org/POM/4.0.0"
3     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5
6   <modelVersion>4.0.0</modelVersion>
7
8   <parent>
9     <groupId>org.sonatype.oss</groupId>
10     <artifactId>oss-parent</artifactId>
11     <version>9</version>
12   </parent>
13
14
15   <groupId>de.juplo</groupId>
16   <artifactId>jpa-converters</artifactId>
17   <name>Juplo - JPA converters</name>
18   <description>Collection of usefull converters for JPA</description>
19   <version>1.0-SNAPSHOT</version>
20   <packaging>jar</packaging>
21   <url>http://www.juplo.de/jpa-converters</url>
22
23
24   <prerequisites>
25     <maven>2.0.6</maven>
26   </prerequisites>
27
28
29   <licenses>
30     <license>
31       <name>The Apache Software License, Version 2.0</name>
32       <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
33       <distribution>repo</distribution>
34       <comments>A business-friendly OSS license</comments>
35     </license>
36   </licenses>
37
38   <scm>
39     <connection>scm:git:http://juplo.de/git/jpa-converters</connection>
40     <developerConnection>scm:git:ssh://juplo.de:/var/lib/git/juplo/jpa-converters</developerConnection>
41     <url>http://juplo.de/gitweb/?p=jpa-converters;a=summary</url>
42   </scm>
43
44
45   <developers>
46     <developer>
47       <id>kai</id>
48       <name>Kai Moritz</name>
49       <email>kai@juplo.de</email>
50     </developer>
51   </developers>
52
53   <contributors>
54   </contributors>
55
56
57   <properties>
58
59     <!-- character encoding -->
60     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
61
62     <!-- used versions -->
63     <hibernate-jpa-2.1-api.version>1.0.0.Final</hibernate-jpa-2.1-api.version>
64     <junit.version>4.12</junit.version>
65     <slf4j.version>1.7.13</slf4j.version>
66
67   </properties>
68
69
70   <dependencies>
71
72     <!-- JPA -->
73     <dependency>
74       <groupId>org.hibernate.javax.persistence</groupId>
75       <artifactId>hibernate-jpa-2.1-api</artifactId>
76       <version>${hibernate-jpa-2.1-api.version}</version>
77     </dependency>
78
79     <!-- Logging -->
80     <dependency>
81       <groupId>org.slf4j</groupId>
82       <artifactId>slf4j-api</artifactId>
83       <version>${slf4j.version}</version>
84     </dependency>
85     <dependency>
86       <groupId>org.slf4j</groupId>
87       <artifactId>slf4j-log4j12</artifactId>
88       <version>${slf4j.version}</version>
89       <scope>runtime</scope>
90     </dependency>
91
92     <!-- Testing -->
93     <dependency>
94       <groupId>junit</groupId>
95       <artifactId>junit</artifactId>
96       <version>${junit.version}</version>
97       <scope>test</scope>
98     </dependency>
99
100   </dependencies>
101
102
103   <distributionManagement>
104     <site>
105       <id>www.juplo.de</id>
106       <url>scp://juplo.de/var/www/juplo/facebook-utils-${project.version}</url>
107     </site>
108   </distributionManagement>
109
110
111   <build>
112     <plugins>
113       <plugin>
114         <groupId>org.apache.maven.plugins</groupId>
115         <artifactId>maven-compiler-plugin</artifactId>
116         <version>3.3</version>
117         <configuration>
118           <source>1.8</source>
119           <target>1.8</target>
120           <encoding>utf8</encoding>
121           <showWarnings>true</showWarnings>
122         </configuration>
123       </plugin>
124       <plugin>
125         <groupId>org.apache.maven.plugins</groupId>
126         <artifactId>maven-source-plugin</artifactId>
127         <version>2.1.2</version><!-- Should be same version as in oss-parent-7 -->
128         <executions>
129           <execution>
130             <id>attach-sources</id>
131             <phase>verify</phase>
132             <goals>
133               <goal>jar</goal>
134             </goals>
135           </execution>
136         </executions>
137       </plugin>
138     </plugins>
139   </build>
140
141
142   <reporting>
143     <plugins>
144       <plugin>
145         <groupId>org.apache.maven.plugins</groupId>
146         <artifactId>maven-changes-plugin</artifactId>
147         <version>2.11</version>
148       </plugin>
149       <plugin>
150         <groupId>org.apache.maven.plugins</groupId>
151         <artifactId>maven-javadoc-plugin</artifactId>
152         <version>2.10.3</version>
153       </plugin>
154       <plugin>
155         <groupId>org.apache.maven.plugins</groupId>
156         <artifactId>maven-jxr-plugin</artifactId>
157         <version>2.5</version>
158       </plugin>
159       <plugin>
160         <groupId>org.apache.maven.plugins</groupId>
161         <artifactId>maven-surefire-report-plugin</artifactId>
162         <version>2.18.1</version>
163       </plugin>
164       <plugin>
165         <groupId>org.apache.maven.plugins</groupId>
166         <artifactId>maven-scm-plugin</artifactId>
167         <version>1.9.4</version>
168         <configuration>
169           <goals>install</goals>
170         </configuration>
171       </plugin>
172       <plugin>
173         <groupId>org.apache.maven.plugins</groupId>
174         <artifactId>maven-pmd-plugin</artifactId>
175         <version>3.5</version>
176         <configuration>
177           <linkXref>true</linkXref>
178           <targetJdk>1.5</targetJdk>
179         </configuration>
180       </plugin>
181     </plugins>
182   </reporting>
183
184 </project>