starts-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>edu.illinois</groupId> <artifactId>starts-maven-plugin</artifactId> <version>1.4</version> </dependency>
<?xml version="1.0"?> <!-- ~ Copyright (c) 2015 - Present. The STARTS Team. All Rights Reserved. --> <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>edu.illinois</groupId> <artifactId>starts</artifactId> <version>1.4</version> </parent> <groupId>edu.illinois</groupId> <artifactId>starts-maven-plugin</artifactId> <version>1.4</version> <packaging>maven-plugin</packaging> <name>STARTS Maven Plugin</name> <url>https://github.com/TestingResearchIllinois/starts</url> <dependencies> <dependency> <groupId>edu.illinois</groupId> <artifactId>starts-core</artifactId> <version>${project.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <!-- Using compiler version 8 to allow method reference --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>8</source> <target>8</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <version>3.3</version> <configuration> <goalPrefix>starts</goalPrefix> <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound> </configuration> <executions> <execution> <id>mojo-descriptor</id> <goals> <goal>descriptor</goal> </goals> </execution> <execution> <id>help-goal</id> <goals> <goal>helpmojo</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-invoker-plugin</artifactId> <version>2.0.0</version> <configuration> <addTestClassPath>true</addTestClassPath> <debug>false</debug> <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo> <cloneClean>false</cloneClean> <pomIncludes> <pomInclude>*/pom.xml</pomInclude> </pomIncludes> <preBuildHookScript>setup</preBuildHookScript> <postBuildHookScript>verify</postBuildHookScript> <localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath> <settingsFile>src/it/settings.xml</settingsFile> </configuration> <executions> <execution> <id>integration-test</id> <goals> <goal>install</goal> <goal>integration-test</goal> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco.version}</version> <executions> <execution> <id>pre-integration-test-execution</id> <phase>pre-integration-test</phase> <goals> <goal>prepare-agent</goal> </goals> <configuration> <destFile>${project.build.directory}/jacoco-it.exec</destFile> <propertyName>invoker.mavenOpts</propertyName> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>