forked from openEHR/java-libs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
121 lines (121 loc) · 3.94 KB
/
pom.xml
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
<?xml version="1.0"?>
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>openehr</groupId>
<artifactId>ref_impl_java</artifactId>
<packaging>pom</packaging>
<version>1.0.14-SNAPSHOT</version>
<name>The openEHR Reference Java Implementation</name>
<organization>
<name>The openEHR Foundation</name>
</organization>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<scm>
<developerConnection>scm:git:ssh://git@css-cds-3:7999/cds/ref_impl_java.git</developerConnection>
<tag>HEAD</tag>
</scm>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
<compilerArgument />
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9</version>
<configuration>
<doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
<!-- <docletPath>/path/to/UmlGraph.jar</docletPath> -->
<docletArtifact>
<groupId>org.umlgraph</groupId>
<artifactId>umlgraph</artifactId>
<version>5.6</version>
</docletArtifact>
<additionalparam>
-inferrel -inferdep -quiet -hide java.*
-collpackages java.util.* -qualify
-postfixpackage -nodefontsize 9
-nodefontpackagesize 7
-edgefontname "Trebuchet MS"
-nodefontabstractname "Trebuchet MS"
-nodefontclassabstractname
"Trebuchet MS"
-nodefontclassname "Trebuchet MS"
-nodefontname
"Trebuchet MS"
-nodefontpackagename "Trebuchet MS"
-nodefonttagname
"Trebuchet MS"
</additionalparam>
<useStandardDocletOptions>true</useStandardDocletOptions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<check />
<formats>
<format>xml</format>
</formats>
</configuration>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<modules>
<module>openehr-rm-core</module>
<module>openehr-rm-domain</module>
<module>openehr-aom</module>
<module>openehr-ap</module>
<module>adl-parser</module>
<module>dadl-parser</module>
<module>oet-parser</module>
<module>adl-serializer</module>
<module>xml-serializer</module>
<module>measure-serv</module>
<module>mini-termserv</module>
<module>rm-builder</module>
<module>xml-binding</module>
<module>dadl-binding</module>
<module>rm-skeleton</module>
<module>archetype-validator</module>
</modules>
<distributionManagement>
<repository>
<id>repo.cambio.se_releases</id>
<name>releases</name>
<url>http://repo.cambio.se/content/repositories/releases</url>
</repository>
<snapshotRepository>
<id>repo.cambio.se_snapshots</id>
<name>snapshots</name>
<url>http://repo.cambio.se/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
</project>