openfasttrace
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.itsallcode.openfasttrace</groupId> <artifactId>openfasttrace</artifactId> <version>4.1.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.itsallcode.openfasttrace</groupId> <artifactId>openfasttrace-parent</artifactId> <version>4.1.0</version> <relativePath>../parent/pom.xml</relativePath> </parent> <artifactId>openfasttrace</artifactId> <version>4.1.0</version> <name>OpenFastTrace Product</name> <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> <properties> <project.build.outputTimestamp>${reproducible.build.timestamp}</project.build.outputTimestamp> </properties> <dependencies> <dependency> <groupId>org.itsallcode.openfasttrace</groupId> <artifactId>openfasttrace-api</artifactId> </dependency> <dependency> <groupId>org.itsallcode.openfasttrace</groupId> <artifactId>openfasttrace-core</artifactId> </dependency> <dependency> <groupId>org.itsallcode.openfasttrace</groupId> <artifactId>openfasttrace-exporter-specobject</artifactId> </dependency> <dependency> <groupId>org.itsallcode.openfasttrace</groupId> <artifactId>openfasttrace-importer-markdown</artifactId> </dependency> <dependency> <groupId>org.itsallcode.openfasttrace</groupId> <artifactId>openfasttrace-importer-restructuredtext</artifactId> </dependency> <dependency> <groupId>org.itsallcode.openfasttrace</groupId> <artifactId>openfasttrace-importer-specobject</artifactId> </dependency> <dependency> <groupId>org.itsallcode.openfasttrace</groupId> <artifactId>openfasttrace-importer-tag</artifactId> </dependency> <dependency> <groupId>org.itsallcode.openfasttrace</groupId> <artifactId>openfasttrace-importer-zip</artifactId> </dependency> <dependency> <groupId>org.itsallcode.openfasttrace</groupId> <artifactId>openfasttrace-reporter-plaintext</artifactId> </dependency> <dependency> <groupId>org.itsallcode.openfasttrace</groupId> <artifactId>openfasttrace-reporter-html</artifactId> </dependency> <dependency> <groupId>org.itsallcode.openfasttrace</groupId> <artifactId>openfasttrace-reporter-aspec</artifactId> </dependency> <dependency> <groupId>org.itsallcode.openfasttrace</groupId> <artifactId>openfasttrace-testutil</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <finalName>openfasttrace-${revision}</finalName> <plugins> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <minimizeJar>false</minimizeJar> <createSourcesJar>true</createSourcesJar> <createDependencyReducedPom>false</createDependencyReducedPom> <transformers> <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" /> <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> <mainClass>org.itsallcode.openfasttrace.core.cli.CliStarter</mainClass> </transformer> </transformers> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>module-info.class</exclude> <exclude>module-info.java</exclude> <exclude>META-INF/MANIFEST.MF</exclude> </excludes> </filter> </filters> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <includeDependencySources>true</includeDependencySources> </configuration> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <compilerArgs> <arg>-Xlint:all</arg> <arg>-Xlint:-path</arg> <arg>-Werror</arg> </compilerArgs> </configuration> </plugin> </plugins> </build> </project>