61 lines
1.9 KiB
Plaintext
61 lines
1.9 KiB
Plaintext
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<groupId>org.reactfx</groupId>
|
||
|
<artifactId>reactfx</artifactId>
|
||
|
<version>2.0-M5</version>
|
||
|
<name>ReactFX</name>
|
||
|
<description>Reactive event streams for JavaFX</description>
|
||
|
<url>http://www.reactfx.org/</url>
|
||
|
<licenses>
|
||
|
<license>
|
||
|
<name>The BSD 2-Clause License</name>
|
||
|
<url>http://opensource.org/licenses/BSD-2-Clause</url>
|
||
|
<distribution>repo</distribution>
|
||
|
</license>
|
||
|
</licenses>
|
||
|
<developers>
|
||
|
<developer>
|
||
|
<name>Tomas Mikula</name>
|
||
|
</developer>
|
||
|
</developers>
|
||
|
<scm>
|
||
|
<connection>scm:git@github.com:TomasMikula/ReactFX.git</connection>
|
||
|
<developerConnection>scm:git@github.com:TomasMikula/ReactFX.git</developerConnection>
|
||
|
<url>scm:git@github.com:TomasMikula/ReactFX.git</url>
|
||
|
</scm>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>com.pholser</groupId>
|
||
|
<artifactId>junit-quickcheck-core</artifactId>
|
||
|
<version>0.4</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>junit</groupId>
|
||
|
<artifactId>junit</artifactId>
|
||
|
<version>4.12</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.junit.contrib</groupId>
|
||
|
<artifactId>junit-theories</artifactId>
|
||
|
<version>4.12</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.hamcrest</groupId>
|
||
|
<artifactId>hamcrest-library</artifactId>
|
||
|
<version>1.3</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.pholser</groupId>
|
||
|
<artifactId>junit-quickcheck-generators</artifactId>
|
||
|
<version>0.4</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</project>
|