ttt-ttv
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.skynav.ttt</groupId> <artifactId>ttt-ttv</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-ttv</artifactId> <name>${project.groupId}:${project.artifactId}</name> <description>Timed Text Verifier</description> <parent> <groupId>com.skynav.ttt</groupId> <artifactId>ttt</artifactId> <version>2.0</version> </parent> <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>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.jvnet.jaxb2.maven2</groupId> <artifactId>maven-jaxb2-plugin</artifactId> <version>0.12.3</version> <executions> <execution> <id>xjc-ttml1</id> <goals> <goal>generate</goal> </goals> <configuration> <specVersion>2.1</specVersion> <schemaDirectory>src/main/resources/com/skynav/ttv/xsd/ttml1</schemaDirectory> <generateDirectory>target/generated-sources/xjc-ttml1</generateDirectory> </configuration> </execution> <execution> <id>xjc-ttml2</id> <goals> <goal>generate</goal> </goals> <configuration> <specVersion>2.1</specVersion> <schemaDirectory>src/main/resources/com/skynav/ttv/xsd/ttml2</schemaDirectory> <generateDirectory>target/generated-sources/xjc-ttml2</generateDirectory> </configuration> </execution> <execution> <id>xjc-smpte-2010</id> <goals> <goal>generate</goal> </goals> <configuration> <specVersion>2.1</specVersion> <schemaDirectory>src/main/resources/com/skynav/ttv/xsd/smpte/2010</schemaDirectory> <generateDirectory>target/generated-sources/xjc-smpte-2010</generateDirectory> </configuration> </execution> <execution> <id>xjc-smpte-2013</id> <goals> <goal>generate</goal> </goals> <configuration> <specVersion>2.1</specVersion> <schemaDirectory>src/main/resources/com/skynav/ttv/xsd/smpte/2013</schemaDirectory> <generateDirectory>target/generated-sources/xjc-smpte-2013</generateDirectory> </configuration> </execution> </executions> </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> <suppressionsLocation>${project.baseUri}src/tools/resources/checkstyle/suppressions.xml</suppressionsLocation> </configuration> </plugin> <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> </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>