jguru-codestyle-java-reactor-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>se.jguru.codestyle.poms.java</groupId>
<artifactId>jguru-codestyle-java-reactor-parent</artifactId>
<version>4.0.2</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) jGuru Europe AB.
~ All rights reserved.
-->
<!--suppress MavenRedundantGroupId -->
<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>
<!--
################################################
# Section 1: Project information
################################################
-->
<parent>
<groupId>se.jguru.codestyle.poms.java</groupId>
<artifactId>jguru-codestyle-poms-java-reactor</artifactId>
<version>4.0.2</version>
</parent>
<groupId>se.jguru.codestyle.poms.java</groupId>
<artifactId>jguru-codestyle-java-reactor-parent</artifactId>
<packaging>pom</packaging>
<name>${project.artifactId}</name>
<url>${site.top.url}/${path.in.reactor}</url>
<description>jGuru Codestyle: Reactor Parent POM (${project.packaging}, version ${project.version})</description>
<properties>
<path.in.reactor>poms/java/java-reactor-parent</path.in.reactor>
<!-- License plugin configuration parameters. -->
<license.id>jguru_apl_v2</license.id>
<license.licenseResolver>classpath://codestyle/license</license.licenseResolver>
<breakOnFailure.license>true</breakOnFailure.license>
</properties>
<!--
################################################
# Section 2: Modules
################################################
-->
<!--
################################################
# Section 3: Build settings
################################################
-->
<build>
<plugins>
<!--
The license plugin is quite inflexible about the format for the injected/detected file header
in terms of license structure. Use it as intended, but provide a variable to handle the
desired license and license resolver.
Why: Ensures that all files contain a license header.
Used: Standard lifecycle, mvn package.
-->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>2.1.0</version>
<configuration>
<descriptionTemplate>/codestyle/license/${license.id}/licenseDescriptionTemplate.ftl</descriptionTemplate>
<failOnMissingHeader>${breakOnFailure.license}</failOnMissingHeader>
<licenseName>${license.id}</licenseName>
<licenseResolver>${license.licenseResolver}</licenseResolver>
<canUpdateDescription>true</canUpdateDescription>
<addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
<licenseFile>${project.build.directory}/LICENSE.TXT</licenseFile>
<roots>
<root>${project.basedir}/src/main</root>
<root>${project.basedir}/src/test</root>
<root>${project.basedir}/src/site</root>
</roots>
<excludes>
<!-- Custom excludes -->
<param>**/*.json</param>
<!-- Modelling filetypes -->
<param>**/*.zargo</param>
<param>**/*.uml</param>
<param>**/*.umldi</param>
<param>**/*.umldi</param>
<param>**/*.xmi</param>
<!-- Image filetypes -->
<param>**/*.img</param>
<param>**/*.png</param>
<param>**/*.jpg</param>
<param>**/*.jpeg</param>
<param>**/*.gif</param>
<!-- Archives -->
<param>**/*.zip</param>
<param>**/*.jar</param>
<param>**/*.war</param>
<param>**/*.ear</param>
<param>**/*.tgz</param>
<param>**/*.gz</param>
</excludes>
</configuration>
<dependencies>
<dependency>
<groupId>se.jguru.codestyle</groupId>
<artifactId>jguru-codestyle</artifactId>
<version>4.0.2</version>
</dependency>
</dependencies>
<executions>
<execution>
<id>check-file-header</id>
<phase>process-sources</phase>
<goals>
<goal>check-file-header</goal>
</goals>
</execution>
<execution>
<id>add-license</id>
<phase>generate-sources</phase>
<goals>
<goal>update-project-license</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<!--
################################################
# Section 4: External systems
################################################
-->
<!--
Compensate for Maven standard variable extrapolation.
Git requires steady URLs (... but Subversion requires path extrapolation, hence the problem).
-->
<distributionManagement>
<site>
<id>github_site</id>
<name>GitHub Site</name>
<url>${site.top.url}/${path.in.reactor}</url>
</site>
</distributionManagement>
<!--
Define connections for Maven's VCS integration.
-->
<scm>
<connection>${scm.connection.url}</connection>
<developerConnection>${scm.devConnection.url}</developerConnection>
<url>${scm.url}</url>
<tag>jguru-codestyle-4.0.2</tag>
</scm>
</project>