Skip to content

Commit

Permalink
Added Maven POM file for the release 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dpaukov committed Dec 21, 2012
1 parent 1ea81c3 commit 9130c2c
Showing 1 changed file with 61 additions and 0 deletions.
61 changes: 61 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">

<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<name>combinatoricsLib</name>
<url>http://code.google.com/p/combinatoricslib/</url>

<groupId>com.googlecode.combinatoricslib</groupId>
<artifactId>combinatoricsLib</artifactId>
<version>2.0</version>
<packaging>jar</packaging>

<licenses>
<license>
<name>LGPL v3.0</name>
<distribution>repo</distribution>
<url>http://www.gnu.org/licenses/lgpl.html</url>
</license>
</licenses>

<scm>
<url>http://combinatoricslib.googlecode.com/svn/tags/release20</url>
<connection>scm:svn:http://combinatoricslib.googlecode.com/svn/tags/release20/</connection>
<developerConnection>scm:svn:https://combinatoricslib.googlecode.com/svn/tags/release20/</developerConnection>
</scm>

<issueManagement>
<system>code.google.com</system>
<url>http://code.google.com/p/combinatoricslib/issues/list</url>
</issueManagement>

<developers>
<developer>
<id>d.paukov</id>
<name>Dmytro Paukov</name>
<email>[email protected]</email>
</developer>
</developers>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.5</version>
<scope>test</scope>
<type>jar</type>
</dependency>
</dependencies>

</project>

0 comments on commit 9130c2c

Please sign in to comment.