Maven Repository - POM file for JUnit junit-interface 0.7 0.7

Summary

JUnitInterface.

An implementation of sbt's test interface for JUnit 4.

Declaration

Here is the list of declaration for junit-interface. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>com.novocode</groupId>
   <artifactId>junit-interface</artifactId>
   <version>0.7</version>
</dependency>

If you think this Maven repository POM file listing for junit-interface is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

License

Name:Two-clause BSD-style license
URL: http://github.com/szeiger/junit-interface/blob/master/LICENSE.txt.

Depends on

The junit-interface-0.7 has 2 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
JUnitjunit 4.8.2
JUnit is a regression testing framework. It is used by the developer who implements unit tests in Java.
919




Packages

The following packages are defined in the junit-interface-0.7.jar

com.novocode.junit

POM File Source

Here is the content of the POM file.

<?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>com.novocode</groupId>
    <artifactId>junit-interface</artifactId>
    <packaging>jar</packaging>
    <version>0.7</version>
    <name>JUnitInterface</name>
    <url>http://github.com/szeiger/junit-interface/</url>
    <inceptionYear>2009</inceptionYear>
    <description>An implementation of sbt's test interface for JUnit 4</description>
    <licenses>
        <license>
            <name>Two-clause BSD-style license</name>
            <url>http://github.com/szeiger/junit-interface/blob/master/LICENSE.txt</url>
            <distribution>repo</distribution>
        </license>
    </licenses>
    
    <scm>
        <url>http://github.com/szeiger/junit-interface/</url>
    </scm>
    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.8.2</version>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>org.scala-tools.testing</groupId>
            <artifactId>test-interface</artifactId>
            <version>0.5</version>
            <scope>compile</scope>
        </dependency>
    </dependencies>
    <repositories>
        <repository>
            <id>ScalaToolsMaven2Repository</id>
            <name>Scala-Tools Maven2 Repository</name>
            <url>http://scala-tools.org/repo-releases/</url>
        </repository>
    </repositories>
</project>