-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
46 lines (46 loc) · 1.56 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?xml version="1.0"?>
<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">
<name>Trickl Random Library</name>
<description>
This is a Java library that provides some random-based algorithms based on the Colt RandomEngine.
</description>
<parent>
<groupId>com.trickl</groupId>
<artifactId>parent</artifactId>
<version>0.1-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.trickl</groupId>
<artifactId>random</artifactId>
<version>0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<licenses>
<license>
<name>GPLv3</name>
<url>http://www.gnu.org/licenses/gpl.txt</url>
</license>
</licenses>
<issueManagement>
<system>GitHub Issue Tracker</system>
<url>https://github.com/trickl/trickl-random/issues</url>
</issueManagement>
<url>http://github.com/trickl/trickl-random/</url>
<scm>
<url>https://github.com/trickl/trickl-random</url>
<connection>scm:git://github.com/trickl/trickl-random.git</connection>
</scm>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>colt</groupId>
<artifactId>colt</artifactId>
<version>${colt.version}</version>
</dependency>
</dependencies>
</project>