<artifactId>jpa-converters</artifactId>
<name>Juplo - JPA converters</name>
<description>Collection of usefull converters for JPA</description>
- <version>1.0-SNAPSHOT</version>
+ <version>1.0.0</version>
<packaging>jar</packaging>
- <url>http://www.juplo.de/jpa-converters</url>
+ <url>http://juplo.de/jpa-converters</url>
<prerequisites>
</dependencies>
+ <repositories>
+ <repository>
+ <snapshots>
+ <enabled>false</enabled>
+ </snapshots>
+ <id>juplo</id>
+ <name>Repository for internal artifacts on juplo.de</name>
+ <url>http://juplo.de/maven2</url>
+ </repository>
+ </repositories>
+
<distributionManagement>
+ <repository>
+ <id>juplo</id>
+ <name>Repository for internal artifacts on juplo.de</name>
+ <url>scpexe://juplo.de/var/www/juplo.de/maven2</url>
+ </repository>
<site>
- <id>www.juplo.de</id>
- <url>scp://juplo.de/var/www/juplo/facebook-utils-${project.version}</url>
+ <id>juplo.de</id>
+ <url>scpexe://juplo.de/var/www/juplo.de/facebook-utils-${project.version}</url>
</site>
</distributionManagement>
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>2.10.4</version>
+ <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>de.juplo</groupId>
<artifactId>hibernate-maven-plugin</artifactId>
</dependencies>
</plugin>
</plugins>
+ <extensions>
+ <!-- Enabling the use of SSH -->
+ <extension>
+ <groupId>org.apache.maven.wagon</groupId>
+ <artifactId>wagon-ssh-external</artifactId>
+ <version>2.10</version>
+ </extension>
+ </extensions>
</build>