JSCover
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.tntim96</groupId> <artifactId>JSCover</artifactId> <version>2.0.21</version> </dependency>
<?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>com.github.tntim96</groupId> <artifactId>JSCover</artifactId> <packaging>jar</packaging> <name>JSCover</name> <version>2.0.21</version> <description>JSCover is a tool that measures code coverage for JavaScript programs.</description> <url>https://tntim96.github.io/JSCover/</url> <prerequisites> <maven>3.2.3</maven> </prerequisites> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <licenses> <license> <name>GNU General Public License, version 2</name> <url>https://www.gnu.org/licenses/gpl-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>https://github.com/tntim96/JSCover/</url> <connection>scm:git:git://github.com/tntim96/JSCover.git</connection> </scm> <repositories> <repository> <id>central</id> <url>https://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-1078</url> </repository> --> </repositories> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <developers> <developer> <id>tntim96</id> <name>Tim</name> <email>tntim96@gmail.com</email> <roles> <role>project-lead</role> </roles> <timezone>+10</timezone> </developer> </developers> <issueManagement> <system>github</system> <url>https://github.com/tntim96/JSCover/issues</url> </issueManagement> <dependencies> <dependency> <groupId>com.google.javascript</groupId> <artifactId>closure-compiler</artifactId> <version>v20250407</version> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.13.1</version> </dependency> <dependency> <groupId>org.htmlunit</groupId> <artifactId>htmlunit</artifactId> <version>4.12.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mozilla</groupId> <artifactId>rhino-all</artifactId> <version>1.8.0</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> <version>3.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>5.18.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jacoco</groupId> <artifactId>org.jacoco.ant</artifactId> <version>0.8.13</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>21</source> <target>21</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> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <!--<version>1.6.3</version>--> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <!--<version>1.6</version>--> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <!--<version>2.2.1</version>--> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <!--<version>2.9.1</version>--> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>