openfasttrace
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.itsallcode</groupId> <artifactId>openfasttrace</artifactId> <version>2.2.0</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>org.itsallcode</groupId> <artifactId>openfasttrace</artifactId> <version>2.2.0</version><!-- PRODUCT VERSION: do not remove this comment! --> <name>OpenFastTrace</name> <description>Free requirement tracking suite</description> <url>https://github.com/itsallcode/openfasttrace</url> <properties> <java.version>1.8</java.version> <junit.version>5.3.1</junit.version> <junit.platform.version>1.3.1</junit.platform.version> <maven.surefire.version>2.22.1</maven.surefire.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <licenses> <license> <name>GNU General Public License v3.0</name> <url>https://www.gnu.org/licenses/gpl-3.0.html</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>redcatbear</id> <url>https://github.com/redcatbear</url> <organization>itsallcode</organization> <organizationUrl>https://github.com/itsallcode</organizationUrl> </developer> <developer> <id>kaklakariada</id> <url>https://github.com/kaklakariada</url> <organization>itsallcode</organization> <organizationUrl>https://github.com/itsallcode</organizationUrl> <email>github@chp1.net</email> </developer> </developers> <scm> <connection>scm:git:https://github.com/itsallcode/openfasttrace.git</connection> <developerConnection>scm:git:https://github.com/itsallcode/openfasttrace.git</developerConnection> <url>https://github.com/itsallcode/openfasttrace</url> </scm> <repositories> <repository> <id>jcenter</id> <url>http://jcenter.bintray.com/</url> </repository> </repositories> <distributionManagement> <repository> <id>itsallcode-maven-repo</id> <url>https://api.bintray.com/maven/itsallcode/itsallcode/openfasttrace/;publish=0</url> <!-- Snapshots repository: --> <!-- <url>https://oss.jfrog.org/artifactory/oss-snapshot-local</url> --> </repository> </distributionManagement> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-launcher</artifactId> <version>${junit.platform.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit-pioneer</groupId> <artifactId>junit-pioneer</artifactId> <version>0.3.0</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-junit-jupiter</artifactId> <version>2.23.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.itsallcode</groupId> <artifactId>junit5-system-extensions</artifactId> <version>1.0.3</version> <scope>test</scope> </dependency> <dependency> <groupId>com.github.kaklakariada</groupId> <artifactId>hamcrest-auto-matcher</artifactId> <version>0.4.3</version> <scope>test</scope> </dependency> <dependency> <groupId>nl.jqno.equalsverifier</groupId> <artifactId>equalsverifier</artifactId> <version>3.0.2</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.0</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.1.0</version> <configuration> <archive> <manifest> <mainClass>org.itsallcode.openfasttrace.cli.CliStarter</mainClass> </manifest> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven.surefire.version}</version> <configuration> <systemPropertyVariables> <java.util.logging.config.file>${basedir}/src/test/resources/logging.properties</java.util.logging.config.file> </systemPropertyVariables> <!-- Workaround for failing tests on Circle CI with Surefire --> <!-- ${argLine} is required to inject default arguments for jacoco --> <argLine>${argLine} -Djdk.net.URLClassPath.disableClassPathURLCheck=true</argLine> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <charset>UTF-8</charset> <doclint></doclint> <serialwarn>true</serialwarn> <failOnError>true</failOnError> <failOnWarnings>true</failOnWarnings> </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.2</version> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>test</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> <version>1.16</version> <configuration> <verbose>false</verbose> <detail>true</detail> <licenseName>gpl_v3</licenseName> <organizationName>itsallcode.org</organizationName> <inceptionYear>2016</inceptionYear> <excludes> <exclude> test/resources/specobject/*.xml </exclude> <exclude>**/*.css</exclude> <exclude>**/*.html</exclude> </excludes> <failOnMissingHeader>true</failOnMissingHeader> <failIfWarning>true</failIfWarning> <failOnNotUptodateHeader>true</failOnNotUptodateHeader> <addJavaLicenseAfterPackage>true</addJavaLicenseAfterPackage> <encoding>UTF-8</encoding> <dryRun>false</dryRun> </configuration> <executions> <execution> <id>check-file-header</id> <goals> <goal>check-file-header</goal> </goals> <phase>validate</phase> </execution> <execution> <id>add-third-party-licenses</id> <goals> <goal>add-third-party</goal> <goal>third-party-report</goal> <goal>download-licenses</goal> </goals> </execution> </executions> </plugin> <!-- Self trace. --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.6.0</version> <executions> <execution> <id>trace</id> <goals> <goal>java</goal> </goals> </execution> </executions> <configuration> <mainClass>org.itsallcode.openfasttrace.cli.CliStarter</mainClass> <commandlineArgs>trace -s doc src/main/java src/test/java</commandlineArgs> </configuration> </plugin> <plugin> <groupId>org.pitest</groupId> <artifactId>pitest-maven</artifactId> <version>1.4.0</version> </plugin> </plugins> <pluginManagement> <plugins> <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself. --> <plugin> <groupId>org.eclipse.m2e</groupId> <artifactId>lifecycle-mapping</artifactId> <version>1.0.0</version> <configuration> <lifecycleMappingMetadata> <pluginExecutions> <pluginExecution> <pluginExecutionFilter> <groupId> org.codehaus.mojo </groupId> <artifactId> license-maven-plugin </artifactId> <versionRange> [1.8,) </versionRange> <goals> <goal> check-file-header </goal> <goal>add-third-party</goal> </goals> </pluginExecutionFilter> <action> <ignore></ignore> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> <plugin> <groupId>com.github.jeluard</groupId> <artifactId>plantuml-maven-plugin</artifactId> <version>1.2</version> <configuration> <sourceFiles> <directory>${basedir}/model/diagrams</directory> <includes> <include>**/*.plantuml</include> </includes> </sourceFiles> <format>svg</format> <outputDirectory>${basedir}/doc/images/uml</outputDirectory> </configuration> <dependencies> <dependency> <groupId>net.sourceforge.plantuml</groupId> <artifactId>plantuml</artifactId> <version>8059</version> </dependency> </dependencies> </plugin> </plugins> </pluginManagement> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> <version>${maven.surefire.version}</version> </plugin> </plugins> </reporting> </project>