Maven Repository - POM file for Scripting JSCover 1.0.14 1.0.14

Summary

JSCover.

JSCover is a tool that measures code coverage for JavaScript programs..

Declaration

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

<dependency>
   <groupId>com.github.tntim96</groupId>
   <artifactId>JSCover</artifactId>
   <version>1.0.14</version>
</dependency>

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

License

Name:GNU General Public License, version 2
URL: http://www.gnu.org/licenses/gpl-2.0.txt.





Depends on

The JSCover-1.0.14 has 6 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
JUnithtmlunit 2.15
A headless browser intended for use in testing web-based applications.
9
JUnitjunit 4.11
JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java.
2031
Testinghamcrest-all 1.3
A self-contained hamcrest jar containing all of the sub-modules in a single artifact.
91
Testing Mockmockito-core 1.9.5
Mock objects library for java
429

Plugin

The following plugins are used in the JSCover-1.0.14.jar

  1. maven-checkstyle-plugin
  2. maven-compiler-plugin
  3. maven-jar-plugin

POM File Source

Here is the content of the POM file.

<?xml version="1.0" encoding="UTF-8"?>
<!--
NB, JSCover-all contains a forked version of Rhino. See:
http://github.com/tntim96/rhino/
-->

<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>
    <parent>
        <groupId>org.sonatype.oss</groupId>
        <artifactId>oss-parent</artifactId>
        <version>9</version>
    </parent>
    <prerequisites>
        <maven>2.2.1</maven>
    </prerequisites>
    <groupId>com.github.tntim96</groupId>
    <artifactId>JSCover</artifactId>
    <packaging>jar</packaging>
    <name>JSCover</name>
    <version>1.0.14</version>
    <description>JSCover is a tool that measures code coverage for JavaScript programs.</description>
    <url>http://tntim96.github.com/JSCover/</url>
    <licenses>
        <license>
            <name>GNU General Public License, version 2</name>
            <url>http://www.gnu.org/licenses/gpl-2.0.txt</url>
            <distribution>repo</distribution>
        </license>
    </licenses>
    <scm>
        <url>http://github.com/tntim96/JSCover/</url>
        <connection>scm:git:git://github.com/tntim96/JSCover.git</connection>
    </scm>
    <repositories>
        <repository>
            <id>central</id>
            <url>http://repo1.maven.org/maven2/</url>
        </repository>
        <!-- Testing snapshot development
        <repository>
            <id>Sonatype repository</id>
            <name>Sonatype's Maven repository</name>
            <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
        </repository>
        -->
        <!-- Testing staged release
        <repository>
            <id>sonatype</id>
            <name>sonatype staging</name>
            <url>https://oss.sonatype.org/content/repositories/comgithubtntim96-1059</url>
        </repository>
        -->
     </repositories>
    
    <issueManagement>
        <system>github</system>
        <url>http://github.com/tntim96/JSCover/issues</url>
    </issueManagement>
    <dependencies>
        <dependency>
            <groupId>com.github.tntim96</groupId>
            <artifactId>rhino</artifactId>
            <version>1.7R5pre04</version>
        </dependency>
        <dependency>
            <groupId>net.sourceforge.htmlunit</groupId>
            <artifactId>htmlunit</artifactId>
            <version>2.15</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.11</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.hamcrest</groupId>
            <artifactId>hamcrest-all</artifactId>
            <version>1.3</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-core</artifactId>
            <version>1.9.5</version>
            <scope>test</scope>
        </dependency>
        <dependency>
          <groupId>net.sourceforge.cobertura</groupId>
          <artifactId>cobertura</artifactId>
          <version>2.0.3</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.5</source>
                    <target>1.5</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-checkstyle-plugin</artifactId>
                <configuration>
                    <enableRulesSummary>false</enableRulesSummary>
                    <configLocation>config/checkstyle.xml</configLocation>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-jar-plugin</artifactId>
                <configuration>
                    <archive>
                        <index>true</index>
                        <manifest>
                            <addClasspath>true</addClasspath>
                            <mainClass>jscover.Main</mainClass>
                        </manifest>
                        <manifestEntries>
                            <Built-By>tntim96</Built-By>
                        </manifestEntries>
                    </archive>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>