jasmine-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.searls</groupId> <artifactId>jasmine-maven-plugin</artifactId> <version>3.0-beta-02</version> </dependency>
<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.searls</groupId> <artifactId>jasmine-maven-plugin</artifactId> <version>3.0-beta-02</version> <packaging>maven-plugin</packaging> <name>jasmine-maven-plugin</name> <description>A JavaScript unit test plugin that processes JavaScript sources and Jasmine specs, prepares test runner HTML files, executes Jasmine specs headlessly with Chrome, and produces JUnit XML reports</description> <url>https://github.com/searls/jasmine-maven-plugin</url> <licenses> <license> <distribution>repo</distribution> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> <comments>Copyright Justin Searls</comments> </license> </licenses> <organization> <name>Justin Searls</name> <url>https://twitter.com/searls</url> </organization> <inceptionYear>2010</inceptionYear> <developers> <developer> <id>searls</id> <name>Justin Searls</name> <email>searls@gmail.com</email> <url>http://about.me/searls</url> <organization>Test Double</organization> <organizationUrl>http://testdouble.com</organizationUrl> </developer> <developer> <id>klieber</id> <name>Kyle Lieber</name> <email>klieber.github@mailnull.com</email> <url>http://kylelieber.com</url> </developer> </developers> <contributors> <contributor> <name>Erik Bakstad</name> <email>erik.bakstad@gmail.com</email> <url>https://github.com/ebaxt</url> </contributor> <contributor> <name>Luiz Ribeiro</name> <email>luizfar@gmail.com</email> <url>http://luizfar.wordpress.com</url> </contributor> <contributor> <name>Dan Freeman</name> <url>https://github.com/dfreeman</url> </contributor> <contributor> <name>dfabulich</name> <url>http://github.com/dfabulich</url> </contributor> <contributor> <name>David Padbury</name> <email>david@davidpadbury.com</email> <url>http://davidpadbury.com</url> </contributor> <contributor> <name>Conny Kreyßel</name> <url>http://www.kreyssel.org</url> </contributor> <contributor> <name>sfry</name> <url>https://github.com/sfry</url> </contributor> <contributor> <name>hikaruworld</name> <url>http://prepro.wordpress.com</url> </contributor> <contributor> <name>Daniel Tabuenca</name> <email>dtabuenc@gmail.com</email> <url>https://github.com/dtabuenc</url> </contributor> <contributor> <name>johnomalley</name> <url>https://github.com/johnomalley</url> </contributor> <contributor> <name>ddumont</name> <url>https://github.com/ddumont</url> </contributor> <contributor> <name>Rafael</name> <url>https://github.com/rvalle</url> </contributor> <contributor> <name>worldjoe</name> <url>https://github.com/worldjoe</url> </contributor> <contributor> <name>Aaron Phethean</name> <url>https://github.com/aphethean</url> </contributor> <contributor> <name>Steve Krall</name> <url>https://github.com/skrall</url> </contributor> <contributor> <name>gejgalis</name> <url>https://github.com/gejgalis</url> </contributor> <contributor> <name>tongant</name> <url>https://github.com/tongant</url> </contributor> <contributor> <name>Todd Quessenberry</name> <url>https://github.com/toddq</url> </contributor> <contributor> <name>Sam Jones</name> <url>https://github.com/samjonester</url> </contributor> </contributors> <scm> <url>https://github.com/searls/jasmine-maven-plugin</url> <connection>scm:git:git@github.com:searls/jasmine-maven-plugin.git</connection> <developerConnection>scm:git:git@github.com:searls/jasmine-maven-plugin.git</developerConnection> <tag>jasmine-maven-plugin-3.0-beta-02</tag> </scm> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <issueManagement> <system>github</system> <url>https://github.com/searls/jasmine-maven-plugin/issues</url> </issueManagement> <ciManagement> <system>travis-ci</system> <url>https://travis-ci.org/searls/jasmine-maven-plugin</url> </ciManagement> <properties> <jetty.version>9.4.33.v20201020</jetty.version> <selenium.version>3.141.59</selenium.version> <jasmine.version>3.5.0</jasmine.version> <mockito.version>3.6.0</mockito.version> <webdrivermanager.version>4.2.2</webdrivermanager.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <java.version>1.8</java.version> <maven.compiler.target>${java.version}</maven.compiler.target> <maven.compiler.source>${java.version}</maven.compiler.source> </properties> <prerequisites> <maven>3.5.4</maven> </prerequisites> <dependencyManagement> <dependencies> <dependency> <groupId>net.bytebuddy</groupId> <artifactId>byte-buddy</artifactId> <version>1.10.14</version> </dependency> <dependency> <groupId>org.junit</groupId> <artifactId>junit-bom</artifactId> <version>5.7.0</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <!-- Mojo Dependencies --> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>3.6.3</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>3.6.3</version> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>3.6.0</version> <scope>provided</scope> </dependency> <!-- Plugin Dependencies --> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> <version>3.3.0</version> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-resources</artifactId> <version>1.1.0</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.11</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-text</artifactId> <version>1.9</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.8.0</version> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.2</version> </dependency> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-java</artifactId> <version>${selenium.version}</version> </dependency> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-server</artifactId> <version>${selenium.version}</version> <exclusions> <exclusion> <artifactId>servlet-api-2.5</artifactId> <groupId>org.mortbay.jetty</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-remote-driver</artifactId> <version>${selenium.version}</version> </dependency> <dependency> <groupId>org.antlr</groupId> <artifactId>ST4</artifactId> <version>4.3.1</version> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-server</artifactId> <version>${jetty.version}</version> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-util</artifactId> <version>${jetty.version}</version> </dependency> <dependency> <groupId>backport-util-concurrent</groupId> <artifactId>backport-util-concurrent</artifactId> <version>3.1</version> </dependency> <dependency> <groupId>org.webjars</groupId> <artifactId>webjars-locator</artifactId> <version>0.40</version> </dependency> <dependency> <groupId>org.webjars.npm</groupId> <artifactId>jasmine</artifactId> <version>${jasmine.version}</version> </dependency> <dependency> <groupId>io.github.bonigarcia</groupId> <artifactId>webdrivermanager</artifactId> <version>${webdrivermanager.version}</version> </dependency> <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> <version>1</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.30</version> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>30.0-jre</version> </dependency> <dependency> <groupId>org.immutables</groupId> <artifactId>value</artifactId> <version>2.8.8</version> <scope>provided</scope> </dependency> <!-- Plugin test deps --> <dependency> <groupId>uk.org.lidalia</groupId> <artifactId>slf4j-test</artifactId> <version>1.2.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>3.18.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-guava</artifactId> <version>3.4.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>${mockito.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-junit-jupiter</artifactId> <version>${mockito.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jsoup</groupId> <artifactId>jsoup</artifactId> <version>1.13.1</version> <scope>test</scope> </dependency> </dependencies> <build> <testResources> <testResource> <directory>${project.basedir}/src/test/resources</directory> <filtering>true</filtering> </testResource> </testResources> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy nexus-staging:release</goals> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>3.1.0</version> <configuration> <useDefaultDelimiters>false</useDefaultDelimiters> <delimiters> <delimiter>%{*}</delimiter> </delimiters> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.9.1</version> <configuration> <skipDeploy>true</skipDeploy> <attributes> <!--suppress MavenModelInspection --> <currentStableVersion>${releasedVersion.version}</currentStableVersion> <jasmineVersion>${jasmine.version}</jasmineVersion> </attributes> </configuration> <dependencies> <dependency> <groupId>org.apache.maven.doxia</groupId> <artifactId>doxia-module-markdown</artifactId> <version>1.9.1</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> <version>3.1.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <version>2.5.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.2.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.2.0</version> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.6</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> <version>2.0.0</version> <configuration> <licenseName>apache-v2</licenseName> <licenseResolver>${project.baseUri}src/main/config/license</licenseResolver> <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage> <roots> <root>src/main/java</root> <root>src/test/java</root> </roots> <includes> <include>**/*.java</include> </includes> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <version>3.6.0</version> <configuration> <goalPrefix>jasmine</goalPrefix> <!-- see http://jira.codehaus.org/browse/MNG-5346 --> <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound> </configuration> <executions> <execution> <id>mojo-descriptor</id> <goals> <goal>descriptor</goal> </goals> </execution> <execution> <id>generated-helpmojo</id> <goals> <goal>helpmojo</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.2</version> <configuration> <excludes> <exclude>**/*IntegrationTest.java</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>2.22.2</version> <executions> <execution> <id>integration-test</id> <goals> <goal>integration-test</goal> </goals> </execution> <execution> <id>verify</id> <goals> <goal>verify</goal> </goals> </execution> </executions> <configuration> <includes> <include>**/*IntegrationTest.java</include> </includes> </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> </executions> <configuration> <excludes> <exclude>com/github/searls/jasmine/mojo/HelpMojo*</exclude> <!-- prevent 'Method code too large' exception --> <!-- see http://goo.gl/5THrnt --> <exclude>**com.steadystate*</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.eluder.coveralls</groupId> <artifactId>coveralls-maven-plugin</artifactId> <version>4.3.0</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>3.2.0</version> <executions> <execution> <phase>pre-site</phase> <goals> <goal>released-version</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-scm-publish-plugin</artifactId> <version>3.0.0</version> <configuration> <checkoutDirectory>${project.build.directory}/scmpublish</checkoutDirectory> <checkinComment>Generating site for ${project.version}</checkinComment> <content>${project.reporting.outputDirectory}</content> <skipDeletedFiles>true</skipDeletedFiles> <pubScmUrl>scm:git:git@github.com:searls/jasmine-maven-plugin.git</pubScmUrl> <scmBranch>gh-pages</scmBranch> </configuration> <executions> <execution> <goals> <goal>publish-scm</goal> </goals> <phase>site-deploy</phase> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>sisu-maven-plugin</artifactId> <version>1.4</version> <executions> <execution> <id>generate-index</id> <goals> <goal>main-index</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <version>3.6.0</version> <reportSets> <reportSet> <reports> <report>report</report> </reports> </reportSet> </reportSets> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>3.1.1</version> <reportSets> <reportSet> <reports> <report>index</report> <report>summary</report> <report>project-team</report> <report>license</report> <report>issue-tracking</report> <report>scm</report> <report>cim</report> <report>distribution-management</report> <report>dependencies</report> <report>plugins</report> </reports> </reportSet> </reportSets> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-changes-plugin</artifactId> <version>2.12.1</version> <configuration> <columnNames>Id,Summary,Reporter,Assignee,Status,Type,Created,Fix Version</columnNames> </configuration> <reportSets> <reportSet> <reports> <report>github-report</report> </reports> </reportSet> </reportSets> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jxr-plugin</artifactId> <version>3.0.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> <version>2.22.2</version> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-pmd-plugin</artifactId> <version>3.13.0</version> <configuration> <rulesets> <ruleset>/rulesets/java/basic.xml</ruleset> <ruleset>/rulesets/java/braces.xml</ruleset> <ruleset>/rulesets/java/codesize.xml</ruleset> <ruleset>/rulesets/java/strings.xml</ruleset> <ruleset>/rulesets/java/imports.xml</ruleset> <ruleset>/rulesets/java/typeresolution.xml</ruleset> <ruleset>/rulesets/java/empty.xml</ruleset> <ruleset>/rulesets/java/unnecessary.xml</ruleset> <ruleset>/rulesets/java/unusedcode.xml</ruleset> <ruleset>/rulesets/maven.xml</ruleset> </rulesets> </configuration> </plugin> </plugins> </reporting> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <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> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>quick</id> <properties> <skipTests>true</skipTests> <jacoco.skip>true</jacoco.skip> <maven.javadoc.skip>true</maven.javadoc.skip> <maven.jxr.skip>true</maven.jxr.skip> <pmd.skip>true</pmd.skip> </properties> </profile> </profiles> </project>