Skip to content
This repository has been archived by the owner on Oct 21, 2020. It is now read-only.

Commit

Permalink
Prepare for Maven central
Browse files Browse the repository at this point in the history
  • Loading branch information
marcphilipp committed Oct 10, 2013
1 parent 1958389 commit 902d30f
Showing 1 changed file with 26 additions and 4 deletions.
30 changes: 26 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,18 @@
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>org.dbunit.dataset.builder</groupId>
<groupId>org.dbunit.datasetbuilder</groupId>
<artifactId>dbunit-datasetbuilder</artifactId>
<version>1.0-SNAPSHOT</version>

<name>DBUnint Data Set Builder</name>
<name>DbUnit DataSetBuilder</name>
<url>https://github.com/marcphilipp/dbunit-datasetbuilder</url>
<description>DBUnit - Dynamically Creating Data Sets Using Builders</description>

<licenses>
<license>
<name>GNU Lesser General Public License, Version 2.1</name>
<url>http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt</url>
<name>GNU Lesser General Public License, Version 2.1</name>
<url>http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt</url>
</license>
</licenses>

Expand All @@ -22,6 +23,27 @@
<developerConnection>scm:git:git@github.com:marcphilipp/dbunit-datasetbuilder.git</developerConnection>
</scm>

<developers>
<developer>
<id>marcphilipp</id>
<name>Marc Philipp</name>
<email>mail@marcphilipp.de</email>
</developer>
</developers>

<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<encoding>UTF-8</encoding>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.dbunit</groupId>
Expand Down

0 comments on commit 902d30f

Please sign in to comment.