Skip to content

Instantly share code, notes, and snippets.

@ittaiz
Last active December 24, 2015 08:48
Show Gist options
  • Save ittaiz/2f43eb754b82ed52bcb2 to your computer and use it in GitHub Desktop.
Save ittaiz/2f43eb754b82ed52bcb2 to your computer and use it in GitHub Desktop.
Specs2 uber pom
<?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">
<modelVersion>4.0.0</modelVersion>
<groupId>org.specs2</groupId>
<artifactId>specs2_2.11</artifactId>
<version>3.5</version>
<name>Specs2 includes</name>
<packaging>pom</packaging>
<dependencies>
<dependency>
<groupId>org.specs2</groupId>
<artifactId>specs2-core_2.11</artifactId>
</dependency>
<dependency>
<groupId>org.specs2</groupId>
<artifactId>specs2-junit_2.11</artifactId>
</dependency>
<dependency>
<groupId>org.specs2</groupId>
<artifactId>specs2-matcher-extra_2.11</artifactId>
</dependency>
<dependency>
<groupId>org.specs2</groupId>
<artifactId>specs2-mock_2.11</artifactId>
</dependency>
<dependency>
<groupId>org.specs2</groupId>
<artifactId>specs2-scalacheck_2.11</artifactId>
</dependency>
<!-- add the same as the above for: -->
<!--specs2-analysis to use the package dependencies matcher-->
<!--specs2-gwt to write given/when/then specifications-->
<!--specs2-html to export specifications as html-->
<!--specs2-form to create html form-like specifications-->
</dependencies>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment