Skip to content

Commit 9130c2c

Browse files
committed
Added Maven POM file for the release 2.0
1 parent 1ea81c3 commit 9130c2c

File tree

1 file changed

+61
-0
lines changed

1 file changed

+61
-0
lines changed

pom.xml

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
5+
<parent>
6+
<groupId>org.sonatype.oss</groupId>
7+
<artifactId>oss-parent</artifactId>
8+
<version>7</version>
9+
</parent>
10+
11+
<modelVersion>4.0.0</modelVersion>
12+
<name>combinatoricsLib</name>
13+
<url>http://code.google.com/p/combinatoricslib/</url>
14+
15+
<groupId>com.googlecode.combinatoricslib</groupId>
16+
<artifactId>combinatoricsLib</artifactId>
17+
<version>2.0</version>
18+
<packaging>jar</packaging>
19+
20+
<licenses>
21+
<license>
22+
<name>LGPL v3.0</name>
23+
<distribution>repo</distribution>
24+
<url>http://www.gnu.org/licenses/lgpl.html</url>
25+
</license>
26+
</licenses>
27+
28+
<scm>
29+
<url>http://combinatoricslib.googlecode.com/svn/tags/release20</url>
30+
<connection>scm:svn:http://combinatoricslib.googlecode.com/svn/tags/release20/</connection>
31+
<developerConnection>scm:svn:https://combinatoricslib.googlecode.com/svn/tags/release20/</developerConnection>
32+
</scm>
33+
34+
<issueManagement>
35+
<system>code.google.com</system>
36+
<url>http://code.google.com/p/combinatoricslib/issues/list</url>
37+
</issueManagement>
38+
39+
<developers>
40+
<developer>
41+
<id>d.paukov</id>
42+
<name>Dmytro Paukov</name>
43+
<email>[email protected]</email>
44+
</developer>
45+
</developers>
46+
47+
<properties>
48+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
49+
</properties>
50+
51+
<dependencies>
52+
<dependency>
53+
<groupId>junit</groupId>
54+
<artifactId>junit</artifactId>
55+
<version>4.5</version>
56+
<scope>test</scope>
57+
<type>jar</type>
58+
</dependency>
59+
</dependencies>
60+
61+
</project>

0 commit comments

Comments
 (0)