Fixed the id of the distribution-site
[hibernate4-maven-plugin] / pom.xml
diff --git a/pom.xml b/pom.xml
index 84bcdfd..a652147 100644 (file)
--- a/pom.xml
+++ b/pom.xml
   <groupId>de.juplo</groupId>
   <artifactId>hibernate-maven-plugin</artifactId>
   <name>Hibernate Maven Plugin</name>
-  <description>Plugin for generating a database-schema from Hibernate-Mapping-Annotations</description>
-  <version>2.0-SNAPSHOT</version>
+  <description>A simple plugin for generating a database-schema from Hibernate-Mappings</description>
+  <version>2.1-SNAPSHOT</version>
   <packaging>maven-plugin</packaging>
-  <url>http://juplo.de/hibernate-maven-plugin</url>
+  <url>http://juplo.de/hibernate-maven-plugin/index.html</url>
 
   <prerequisites>
     <maven>2.0.6</maven>
       <name>Andreas Kuhtz</name>
       <email>andreas.kuhtz@gmail.com</email>
     </contributor>
+    <contributor>
+      <name>Heer Fabio</name>
+      <email>fabio.heer@dvbern.ch</email>
+    </contributor>
     <!--
     <contributor>
       <name></name>
 
   <distributionManagement>
     <site>
-      <id>www.juplo.de</id>
+      <id>juplo.de</id>
       <url>scp://juplo.de/var/www/juplo/hibernate-maven-plugin-${project.version}</url>
     </site>
   </distributionManagement>
     <!-- Zeichensatz -->
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     <!-- Verwendete Versionen -->
-    <hibernate.version>5.0.2.Final</hibernate.version>
-    <hibernate-validator.version>5.2.2.Final</hibernate-validator.version>
+    <hibernate.version>5.2.4.Final</hibernate.version>
+    <hibernate-validator.version>5.3.1.Final</hibernate-validator.version>
     <el-api.version>3.0.0</el-api.version>
     <maven.version>3.3.3</maven.version>
     <maven-plugin-log4j.version>1.0.1</maven-plugin-log4j.version>
           </execution>
         </executions>
       </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <version>2.7</version><!-- Should be same version as in oss-parent-7 -->
+        <configuration>
+          <additionalparam>-Xdoclint:none</additionalparam>
+        </configuration>
+        <executions>
+          <execution>
+            <id>attach-javadoc</id>
+            <phase>verify</phase>
+            <goals>
+              <goal>jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-scm-plugin</artifactId>
       <plugins>
         <plugin>
           <artifactId>maven-site-plugin</artifactId>
-          <version>3.4</version>
+          <version>3.5.1</version>
           <configuration>
             <siteDirectory>${project.build.directory}/filtered-site</siteDirectory>
           </configuration>
         <version>2.7</version><!-- Should be same version as in oss-parent-7 -->
         <configuration>
           <additionalparam>-Xdoclint:none</additionalparam>
+          <tags>
+            <tag>
+              <name>goal</name>
+              <placement>a</placement>
+              <head>Goal:</head>
+            </tag>
+            <tag>
+              <name>phase</name>
+              <placement>a</placement>
+              <head>Phase:</head>
+            </tag>
+            <tag>
+              <name>threadSafe</name>
+              <placement>a</placement>
+              <head>Thread Safe:</head>
+            </tag>
+            <tag>
+              <name>requiresDependencyResolution</name>
+              <placement>a</placement>
+              <head>Requires Dependency Resolution:</head>
+            </tag>
+            <tag>
+              <name>requiresProject</name>
+              <placement>a</placement>
+              <head>Requires Project:</head>
+            </tag>
+          </tags>
         </configuration>
       </plugin>
       <plugin>