parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>ca.qc.ircm</groupId> <artifactId>parent</artifactId> <version>7</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- The MIT License Copyright (c) 2012 Institut de recherches cliniques de Montreal (IRCM) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --> <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> <groupId>ca.qc.ircm</groupId> <artifactId>parent</artifactId> <name>parent</name> <version>7</version> <packaging>pom</packaging> <inceptionYear>2012</inceptionYear> <description>Parent POM for IRCM's projects.</description> <url>http://bitbucket.org/ircm/parent</url> <organization> <name>Institut de recherches cliniques de Montreal (IRCM)</name> <url>http://www.ircm.qc.ca</url> </organization> <licenses> <license> <name>MIT License</name> <url>https://opensource.org/licenses/MIT</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>poitrac</id> <name>Christian Poitras</name> <email>christian.poitras@ircm.qc.ca</email> <organization>IRCM</organization> <organizationUrl>http://www.ircm.qc.ca</organizationUrl> <timezone>-5</timezone> <roles> <role>Analyste en informatique</role> </roles> </developer> </developers> <scm> <connection>scm:git:git@bitbucket.org:ircm/parent.git</connection> <developerConnection>scm:git:git@bitbucket.org:ircm/parent.git</developerConnection> <url>https://bitbucket.org/ircm/parent</url> <tag>HEAD</tag> </scm> <issueManagement> <system>GitHub</system> <url>https://github.com/IRCM/parent/issues</url> </issueManagement> <distributionManagement> <repository> <id>sonatype</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>sonatype</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <javac.version>1.8</javac.version> <enforce.javaVersion>${javac.version}</enforce.javaVersion> <enforce.mavenVersion>3.0.1</enforce.mavenVersion> <enforce-plugin-versions.skip>false</enforce-plugin-versions.skip> <enforce-upper-bounds-dependencies.skip>true</enforce-upper-bounds-dependencies.skip> <enforce-release-dependencies.skip>false</enforce-release-dependencies.skip> <assembly.descriptorRef>jar-with-dependencies</assembly.descriptorRef> <maven-clean-plugin.version>3.1.0</maven-clean-plugin.version> <maven-compiler-plugin.version>3.8.0</maven-compiler-plugin.version> <maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version> <maven-failsafe-plugin.version>2.22.1</maven-failsafe-plugin.version> <maven-install-plugin.version>2.5.2</maven-install-plugin.version> <maven-resources-plugin.version>3.1.0</maven-resources-plugin.version> <maven-site-plugin.version>3.7.1</maven-site-plugin.version> <maven-surefire-plugin.version>2.22.1</maven-surefire-plugin.version> <maven-verifier-plugin.version>1.1</maven-verifier-plugin.version> <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version> <maven-war-plugin.version>3.2.2</maven-war-plugin.version> <maven-shade-plugin.version>3.2.1</maven-shade-plugin.version> <maven-source-plugin.version>3.0.1</maven-source-plugin.version> <maven-javadoc-plugin.version>3.1.0</maven-javadoc-plugin.version> <maven-project-info-reports-plugin.version>2.9</maven-project-info-reports-plugin.version> <maven-surefire-report-plugin.version>2.22.1</maven-surefire-report-plugin.version> <maven-antrun-plugin.version>1.8</maven-antrun-plugin.version> <maven-assembly-plugin.version>3.1.1</maven-assembly-plugin.version> <maven-dependency-plugin.version>3.1.1</maven-dependency-plugin.version> <maven-enforcer-plugin.version>3.0.0-M1</maven-enforcer-plugin.version> <maven-gpg-plugin.version>1.6</maven-gpg-plugin.version> <maven-release-plugin.version>2.5.3</maven-release-plugin.version> <buildnumber-maven-plugin.version>1.4</buildnumber-maven-plugin.version> <license-maven-plugin.version>3.0</license-maven-plugin.version> <spotbugs-maven-plugin.version>3.1.11</spotbugs-maven-plugin.version> <jgitflow-maven-plugin.version>1.0-m5.1</jgitflow-maven-plugin.version> </properties> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-clean-plugin</artifactId> <version>${maven-clean-plugin.version}</version> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <source>${javac.version}</source> <target>${javac.version}</target> </configuration> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>${maven-deploy-plugin.version}</version> </plugin> <plugin> <artifactId>maven-failsafe-plugin</artifactId> <version>${maven-failsafe-plugin.version}</version> </plugin> <plugin> <artifactId>maven-install-plugin</artifactId> <version>${maven-install-plugin.version}</version> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>${maven-resources-plugin.version}</version> </plugin> <plugin> <artifactId>maven-site-plugin</artifactId> <version>${maven-site-plugin.version}</version> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> </plugin> <plugin> <artifactId>maven-verifier-plugin</artifactId> <version>${maven-verifier-plugin.version}</version> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>${maven-jar-plugin.version}</version> <configuration> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> </manifest> <manifestEntries> <Implementation-Build>${buildNumber}</Implementation-Build> <X-Compile-Source-JDK>${javac.version}</X-Compile-Source-JDK> <X-Compile-Target-JDK>${javac.version}</X-Compile-Target-JDK> </manifestEntries> </archive> </configuration> </plugin> <plugin> <artifactId>maven-war-plugin</artifactId> <version>${maven-war-plugin.version}</version> <configuration> <failOnMissingWebXml>false</failOnMissingWebXml> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> </manifest> <manifestEntries> <Implementation-Build>${buildNumber}</Implementation-Build> <X-Compile-Source-JDK>${javac.version}</X-Compile-Source-JDK> <X-Compile-Target-JDK>${javac.version}</X-Compile-Target-JDK> </manifestEntries> </archive> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>${maven-shade-plugin.version}</version> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <executions> <execution> <id>attach-javadoc</id> <phase>verify</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-project-info-reports-plugin</artifactId> <version>${maven-project-info-reports-plugin.version}</version> </plugin> <plugin> <artifactId>maven-surefire-report-plugin</artifactId> <version>${maven-surefire-report-plugin.version}</version> </plugin> <plugin> <artifactId>maven-antrun-plugin</artifactId> <version>${maven-antrun-plugin.version}</version> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>${maven-assembly-plugin.version}</version> <configuration> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> </manifest> <manifestEntries> <Implementation-Build>${buildNumber}</Implementation-Build> <X-Compile-Source-JDK>${javac.version}</X-Compile-Source-JDK> <X-Compile-Target-JDK>${javac.version}</X-Compile-Target-JDK> </manifestEntries> </archive> </configuration> <executions> <execution> <id>make-assembly</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <descriptorRefs> <descriptorRef>${assembly.descriptorRef}</descriptorRef> </descriptorRefs> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-dependency-plugin</artifactId> <version>${maven-dependency-plugin.version}</version> </plugin> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <version>${maven-enforcer-plugin.version}</version> <executions> <execution> <id>enforce-plugin-versions</id> <goals> <goal>enforce</goal> </goals> <configuration> <skip>${enforce-plugin-versions.skip}</skip> <rules> <requirePluginVersions /> </rules> </configuration> </execution> <execution> <id>enforce-upper-bounds-dependencies</id> <goals> <goal>enforce</goal> </goals> <configuration> <skip>${enforce-upper-bounds-dependencies.skip}</skip> <rules> <requireUpperBoundDeps /> </rules> </configuration> </execution> <execution> <id>enforce-release-dependencies</id> <goals> <goal>enforce</goal> </goals> <configuration> <skip>${enforce-release-dependencies.skip}</skip> <rules> <requireReleaseDeps /> </rules> </configuration> </execution> <execution> <id>enforce-java-version</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireJavaVersion> <version>${enforce.javaVersion}</version> </requireJavaVersion> </rules> </configuration> </execution> <execution> <id>enforce-maven-version</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <version>${enforce.mavenVersion}</version> </requireMavenVersion> </rules> </configuration> </execution> <execution> <id>enforce-source-encoding</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireProperty> <property>project.build.sourceEncoding</property> </requireProperty> </rules> </configuration> </execution> <execution> <id>enforce-compiler-properties</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireProperty> <property>javac.version</property> </requireProperty> </rules> </configuration> </execution> <execution> <id>enforce-report-encoding</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireProperty> <property>project.reporting.outputEncoding</property> </requireProperty> </rules> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>${maven-release-plugin.version}</version> <configuration> <mavenExecutorId>forked-path</mavenExecutorId> <useReleaseProfile>false</useReleaseProfile> <arguments>-Prelease</arguments> <tagNameFormat>@{project.version}</tagNameFormat> </configuration> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>buildnumber-maven-plugin</artifactId> <version>${buildnumber-maven-plugin.version}</version> <executions> <execution> <phase>validate</phase> <goals> <goal>create</goal> </goals> <configuration> <doCheck>false</doCheck> <doUpdate>false</doUpdate> <revisionOnScmFailure>local-dev</revisionOnScmFailure> </configuration> </execution> </executions> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>${license-maven-plugin.version}</version> <configuration> <header>license-header.txt</header> <properties> <owner>${project.organization.name}</owner> </properties> <excludes> <exclude>**/README</exclude> <exclude>**/*.txt</exclude> <exclude>**/.*</exclude> </excludes> <executions> <execution> <goals><goal>check</goal></goals> </execution> </executions> </configuration> </plugin> <plugin> <groupId>external.atlassian.jgitflow</groupId> <artifactId>jgitflow-maven-plugin</artifactId> <version>${jgitflow-maven-plugin.version}</version> <configuration> <enableSshAgent>true</enableSshAgent> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <artifactId>maven-enforcer-plugin</artifactId> </plugin> </plugins> </build> <profiles> <profile> <id>enforce-upper-bounds-dependencies</id> <properties> <enforce-upper-bounds-dependencies.skip>false</enforce-upper-bounds-dependencies.skip> </properties> </profile> <profile> <id>site-quick</id> <activation> <property> <name>quick</name> </property> </activation> <properties> <dependency.locations.enabled>false</dependency.locations.enabled> <dependency.details.enabled>false</dependency.details.enabled> </properties> </profile> <profile> <id>release</id> <build> <plugins> <plugin> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> </plugin> </plugins> </build> </profile> </profiles> <reporting> <plugins> <plugin> <artifactId>maven-surefire-report-plugin</artifactId> <version>${maven-surefire-report-plugin.version}</version> <reportSets> <reportSet> <reports> <report>report-only</report> </reports> </reportSet> </reportSets> </plugin> <plugin> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-maven-plugin</artifactId> <version>${spotbugs-maven-plugin.version}</version> </plugin> </plugins> </reporting> </project>