diff options
-rw-r--r-- | pom.xml | 33 |
1 files changed, 19 insertions, 14 deletions
@@ -1,14 +1,13 @@ -<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/xsd/maven-4.0.0.xsd"> +<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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>nu.xss</groupId> <artifactId>xss-jpa</artifactId> - <version>0.0.2-SNAPSHOT</version> + <version>0.1.0</version> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> - <hibernate.version>4.1.10.Final</hibernate.version> - <slf4j.version>1.7.3</slf4j.version> + <hibernate.version>4.2.0.Final</hibernate.version> + <slf4j.version>1.7.5</slf4j.version> </properties> <dependencies> @@ -51,6 +50,14 @@ </compilerArguments> </configuration> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-release-plugin</artifactId> + <version>2.1</version> + <configuration> + <autoVersionSubmodules>true</autoVersionSubmodules> + </configuration> + </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> @@ -70,15 +77,6 @@ </execution> </executions> </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-compiler-plugin</artifactId> - <version>2.5</version> - <configuration> - <source>1.7</source> - <target>1.7</target> - </configuration> - </plugin> <!-- No dependencies in jar for helpers.. <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> </configuration> </plugin> --> @@ -94,6 +92,13 @@ </plugins> </build> + <scm> + <connection>scm:git:http://git.xss.nu/xss-jpa.git/</connection> + <developerConnection>scm:git:git@xss.nu:xss-jpa</developerConnection> + <tag>HEAD</tag> + <url>http://git.xss.nu/xss-jpa.git/</url> + </scm> + <distributionManagement> <repository> <id>nexus-deploy</id> |