Added a Maven pom.xml so that txtmark can contribute its jar to a Maven repository.

This commit is contained in:
Malcolm Sparks 2011-05-26 13:52:48 +01:00
parent 4a4a0d0890
commit c81793de6c
2 changed files with 17 additions and 1 deletions

3
.gitignore vendored
View File

@ -3,4 +3,5 @@ doc/
release/
.settings
.classpath
.project
.project
target/

15
pom.xml Normal file
View File

@ -0,0 +1,15 @@
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>txtmark</groupId>
<artifactId>txtmark</artifactId>
<packaging>jar</packaging>
<version>0.6-SNAPSHOT</version>
<name>txtmark</name>
<url>https://github.com/rjeschke/txtmark</url>
<build>
<sourceDirectory>${basedir}/src/java</sourceDirectory>
</build>
<dependencies>
</dependencies>
</project>