ttt-cap2tt
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.skynav.ttt</groupId> <artifactId>ttt-cap2tt</artifactId> <version>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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <artifactId>ttt-cap2tt</artifactId> <name>${project.groupId}:${project.artifactId}</name> <description>Lambda CAP to Timed Text Converter</description> <parent> <groupId>com.skynav.ttt</groupId> <artifactId>ttt</artifactId> <version>2.0</version> </parent> <properties> <test.basedir>${basedir}/run/test</test.basedir> </properties> <scm> <connection>scm:git:https://github.com/skynav/ttt.git</connection> <url>scm:git:https://github.com/skynav/ttt.git</url> <developerConnection>scm:git:https://github.com/skynav/ttt.git</developerConnection> </scm> <distributionManagement> <site> <id>${project.artifactId}-site</id> <url>${project.baseUri}</url> </site> </distributionManagement> <dependencies> <dependency> <groupId>com.skynav.ttt</groupId> <artifactId>ttt-ttv</artifactId> <version>1.0</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.skynav.ttt</groupId> <artifactId>ttt-xmlunit-core</artifactId> <version>${xmlunit.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>${surefire.version}</version> <configuration> <includes> <include>**/*TestCase.java</include> <include>**/*TestCases.java</include> </includes> <redirectTestOutputToFile>true</redirectTestOutputToFile> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>${checkstyle.version}</version> <configuration> <configLocation>${project.baseUri}src/tools/resources/checkstyle/checkstyle.xml</configLocation> <headerLocation>${project.baseUri}src/tools/resources/checkstyle/LICENSE.txt</headerLocation> <linkXRef>false</linkXRef> <logViolationsToConsole>true</logViolationsToConsole> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>${exec.version}</version> <executions> <execution> <goals> <goal>java</goal> </goals> </execution> </executions> <configuration> <mainClass>com.skynav.cap2tt.app.Converter</mainClass> <arguments> <argument>-v</argument> <argument>-v</argument> <argument>--warn-on</argument> <argument>all</argument> <argument>--config</argument> <argument>${test.basedir}/test.config.xml</argument> <argument>--output-file</argument> <argument>${test.basedir}/test.xml</argument> <argument>${test.basedir}/test.cap</argument> </arguments> </configuration> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>${checkstyle.version}</version> <configuration> <configLocation>${project.baseUri}src/tools/resources/checkstyle/checkstyle.xml</configLocation> <headerLocation>${project.baseUri}src/tools/resources/checkstyle/LICENSE.txt</headerLocation> <linkXRef>false</linkXRef> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>3.0.1</version> <configuration> <excludeFilterFile>src/tools/resources/findbugs/exclusions.xml</excludeFilterFile> <effort>Max</effort> <threshold>Low</threshold> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-pmd-plugin</artifactId> <version>${pmd.version}</version> <reportSets> <reportSet> <reports> <report>pmd</report> </reports> </reportSet> </reportSets> <configuration> <rulesets> <ruleset>${project.baseUri}src/tools/resources/pmd/rules.xml</ruleset> </rulesets> <linkXRef>false</linkXRef> <skipEmptyReport>false</skipEmptyReport> </configuration> </plugin> </plugins> </reporting> </project>