Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<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-api-jar</artifactId>
<name>HL7Templates API JAR</name>
<version>3.0.0-SNAPSHOT</version>
<organization>
<name>IHE-Europe</name>
<url>https://ihe-europe.net/</url>
</organization>
<description>This module contains information related to parsing and visiting objects related to HL7 Templates Standard.</description>
<issueManagement>
<system>JIRA</system>
<url>https://gazelle.ihe.net/jira/projects/GOC/</url>
</issueManagement>
<ciManagement>
<url>https://gazelle.ihe.net/jenkins/view/GOC/job/hl7templates-api/</url>
<system>Jenkins</system>
</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>
<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 -DHL7TEMP_RESOURCES_PATH=../hl7templates-resources/</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.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>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.9</version>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.17</version>
</plugin>
</plugins>
</reporting>
<properties>
<sonar.jdbc.url>jdbc:postgresql:sonar</sonar.jdbc.url>
<sonar.jdbc.driver>org.postgresql.Driver</sonar.jdbc.driver>
<sonar.jdbc.username>gazelle</sonar.jdbc.username>
<sonar.jdbc.password>gazelle</sonar.jdbc.password>
<sonar.host.url>http://localhost:9000</sonar.host.url>
<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>net.ihe.gazelle</groupId>
<artifactId>hl7templates-model-jar</artifactId>
<version>3.0.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>