Fix up pom.xml for maven central, add .gitignore, point to new git repo

This commit is contained in:
moparisthebest 2014-08-12 12:06:01 -04:00
parent c52b31a936
commit 92e301ca00
2 changed files with 34 additions and 15 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
target/

48
pom.xml
View File

@ -1,11 +1,15 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <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">
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>net.sf</groupId> <parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>9</version>
</parent>
<groupId>com.moparisthebest</groupId>
<artifactId>junidecode</artifactId> <artifactId>junidecode</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>0.1.1</version> <version>0.1.1-SNAPSHOT</version>
<name>junidecode</name> <name>junidecode</name>
<licenses> <licenses>
<license> <license>
@ -30,14 +34,15 @@
<url>http://junidecode.sf.net</url> <url>http://junidecode.sf.net</url>
<scm> <scm>
<connection>scm:svn:https://junidecode.svn.sourceforge.net/svnroot/junidecode/trunk</connection> <connection>scm:git:https://github.com/moparisthebest/junidecode.git</connection>
<developerConnection>scm:svn:https://junidecode.svn.sourceforge.net/svnroot/junidecode</developerConnection> <developerConnection>scm:git:https://github.com/moparisthebest/junidecode.git</developerConnection>
<url>http://junidecode.svn.sourceforge.net/viewvc/junidecode</url> <url>https://github.com/moparisthebest/junidecode</url>
</scm> </scm>
<properties> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<pushChanges>false</pushChanges>
<localCheckout>true</localCheckout>
</properties> </properties>
<dependencies> <dependencies>
<dependency> <dependency>
@ -52,6 +57,7 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration> <configuration>
<source>1.5</source> <source>1.5</source>
<target>1.5</target> <target>1.5</target>
@ -62,6 +68,7 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId> <artifactId>maven-jar-plugin</artifactId>
<version>2.5</version>
<configuration> <configuration>
<archive> <archive>
<manifestFile>${project.build.directory}/assembly.manifest</manifestFile> <manifestFile>${project.build.directory}/assembly.manifest</manifestFile>
@ -89,18 +96,18 @@
</goals> </goals>
<configuration> <configuration>
<tasks> <tasks>
<copy file="${basedir}/assembly.manifest" todir="${project.build.directory}" overwrite="true"/> <copy file="${basedir}/assembly.manifest" todir="${project.build.directory}" overwrite="true" />
<tstamp> <tstamp>
<format property="TODAY" pattern="yyyy-MM-dd hh:mm:ss" /> <format property="TODAY" pattern="yyyy-MM-dd hh:mm:ss" />
</tstamp> </tstamp>
<echo>pom.xml: timestamp ${TODAY}</echo> <echo>pom.xml: timestamp ${TODAY}</echo>
<replace dir="${project.build.directory}"> <replace dir="${project.build.directory}">
<include name="assembly.manifest"/> <include name="assembly.manifest" />
<replacefilter token="#build#" value="${buildLabel}"/> <replacefilter token="#build#" value="${buildLabel}" />
<replacefilter token="#version#" value="${version}"/> <replacefilter token="#version#" value="${project.version}" />
<replacefilter token="#user.name#" value="${user.name}"/> <replacefilter token="#user.name#" value="${user.name}" />
<replacefilter token="#today#" value="${TODAY}"/> <replacefilter token="#today#" value="${TODAY}" />
<replacefilter token="#mainclass#" value="net.sf.junidecode.App"/> <replacefilter token="#mainclass#" value="net.sf.junidecode.App" />
</replace> </replace>
</tasks> </tasks>
</configuration> </configuration>
@ -108,6 +115,17 @@
</executions> </executions>
</plugin> </plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.2</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins> </plugins>
</build> </build>
</project> </project>