work-tracker-examples
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.deere.isg.work-tracker.examples</groupId>
<artifactId>work-tracker-examples</artifactId>
<version>1.0.0-rc14</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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">
<parent>
<artifactId>work-tracker</artifactId>
<groupId>com.deere.isg.work-tracker</groupId>
<version>1.0.0-rc14</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.deere.isg.work-tracker.examples</groupId>
<artifactId>work-tracker-examples</artifactId>
<packaging>pom</packaging>
<licenses>
<license>
<name>MIT</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<modules>
<module>java-example</module>
<module>spring-example</module>
<module>spring-boot-example</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<version>${maven-license-plugin-version}</version>
<configuration>
<!-- Template location -->
<header>build/exampleHeader.txt</header>
<properties>
<!-- Values to be substituted in template -->
<h_inceptionYear>${inceptionYear}</h_inceptionYear>
<h_currentYear>${currentYear}</h_currentYear>
<h_copyrightOwner>${copyrightOwner}</h_copyrightOwner>
</properties>
<strictCheck>true</strictCheck>
<excludes>
<exclude>**/*.html</exclude>
<exclude>**/*.xml</exclude>
<exclude>**/*.txt</exclude>
<exclude>**/*.log</exclude>
<exclude>**/*.md</exclude>
<exclude>**/*.yml</exclude>
<exclude>.idea/**</exclude>
<exclude>.github/**</exclude>
<exclude>.git*</exclude>
<exclude>LICENSE</exclude>
</excludes>
</configuration>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>format</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>