<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"> <parent> <artifactId>gazelle-objects-checker</artifactId> <groupId>net.ihe.gazelle</groupId> <version>3.0.0-SNAPSHOT</version> <relativePath>../../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <groupId>net.ihe.gazelle</groupId> <artifactId>hl7templates-generator-jar</artifactId> <name>HL7Templates Generator JAR</name> <version>3.0.0-SNAPSHOT</version> <organization> <name>IHE-Europe</name> <url>https://ihe-europe.net/</url> </organization> <description> This module allows to manipulate objects based on HL7Templates Standard structure and generate constraints based on GOC model. This module extract useful constraint and generate a uml model. </description> <issueManagement> <system>JIRA</system> <url>https://gazelle.ihe.net/jira/projects/GOC</url> </issueManagement> <ciManagement> <system>Jenkins</system> <url>https://gazelle.ihe.net/jenkins/view/GOC/job/hl7templates-generator-jar/</url> </ciManagement> <inceptionYear>2016</inceptionYear> <mailingLists> <mailingList> <name>EU_connectathon</name> <subscribe>EU_connectathon@googlegroups.com</subscribe> <unsubscribe>EU_connectathon+unsubscribe@googlegroups.com</unsubscribe> </mailingList> </mailingLists> <developers> <developer> <name>Abderrazek Boufahja</name> <email>abderrazek.boufahja@ihe-europe.net</email> </developer> </developers> <build> <pluginManagement> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.3</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.20</version> <configuration> <argLine>-Dfile.encoding=UTF-8</argLine> <systemPropertyVariables> <jacoco-agent.destfile>target/jacoco.exec</jacoco-agent.destfile> </systemPropertyVariables> </configuration> <dependencies> <dependency> <groupId>org.apache.maven.surefire</groupId> <artifactId>surefire-junit47</artifactId> <version>2.20</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.pitest</groupId> <artifactId>pitest-maven</artifactId> <version>1.2.0</version> <configuration> <targetClasses> <targetClasse>net.ihe.gazelle.tempgen.*</targetClasse> </targetClasses> <targetTests> <targetTest>net.ihe.gazelle.tempgen.*</targetTest> </targetTests> <mutators> <mutator>ALL</mutator> </mutators> <verbose>true</verbose> </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.7.9</version> <executions> <execution> <id>default-prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>default-report</id> <phase>prepare-package</phase> <goals> <goal>report</goal> </goals> <configuration> <dataFile>target/jacoco.exec</dataFile> </configuration> </execution> </executions> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>2.17</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.4</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>gazelle-plugins</artifactId> <version>1.60</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>2.9</version> </plugin> </plugins> </reporting> <properties> <additionalparam>-Xdoclint:none</additionalparam> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin> <sonar.jacoco.reportPaths>target/jacoco.exec</sonar.jacoco.reportPaths> <git.user.name>git</git.user.name> <git.user.token>git</git.user.token> <git.project.url> https://${git.user.name}:${git.user.token}@gitlab.inria.fr/gazelle/library/hl7templates/hl7templates-api.git </git.project.url> </properties> <scm> <connection>scm:git:${git.project.url}</connection> <url>scm:git:${git.project.url}</url> <developerConnection>scm:git:${git.project.url}</developerConnection> <tag>HEAD</tag> </scm> <distributionManagement> <repository> <id>sumo</id> <url>https://gazelle.ihe.net/nexus/content/repositories/releases/</url> </repository> <snapshotRepository> <id>sumo</id> <url>https://gazelle.ihe.net/nexus/content/repositories/snapshots/</url> </snapshotRepository> </distributionManagement> <repositories> <repository> <id>irisa-sumo</id> <name>Sumo Irisa Public Maven Repository Group</name> <url>https://gazelle.ihe.net/nexus/content/groups/public/</url> <layout>default</layout> <releases> <enabled>true</enabled> <updatePolicy>never</updatePolicy> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>1.7.30</version> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>apache-log4j-extras</artifactId> <version>1.2.17</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> <scope>test</scope> </dependency> <dependency> <groupId>net.ihe.gazelle</groupId> <artifactId>hl7templates-model-jar</artifactId> <version>3.0.0-SNAPSHOT</version> </dependency> <dependency> <groupId>net.ihe.gazelle.common.code</groupId> <artifactId>common-code-jar</artifactId> <version>2.0.2</version> </dependency> <dependency> <groupId>net.ihe.gazelle.hl7templates</groupId> <artifactId>hl7templates-api-jar</artifactId> <version>3.0.0-SNAPSHOT</version> </dependency> <dependency> <groupId>net.ihe.gazelle.svs</groupId> <artifactId>svs-code-jar</artifactId> <version>2.0.2</version> <type>jar</type> </dependency> <dependency> <groupId>apache-httpclient</groupId> <artifactId>commons-httpclient</artifactId> <version>3.1</version> <type>jar</type> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.5.3</version> <scope>test</scope> </dependency> <dependency> <groupId>net.sf.trove4j</groupId> <artifactId>trove4j</artifactId> <version>3.0.3</version> </dependency> </dependencies> </project>