-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathpom.xml
More file actions
163 lines (152 loc) · 5.67 KB
/
pom.xml
File metadata and controls
163 lines (152 loc) · 5.67 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<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>
<parent>
<groupId>org.openmrs.maven.parents</groupId>
<artifactId>maven-parent-openmrs-module</artifactId>
<version>2.1.0</version>
</parent>
<groupId>org.openmrs.module</groupId>
<artifactId>xforms</artifactId>
<version>5.1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>XForms Module</name>
<description>A browser based forms module which adds XForms support and related services to XForms clients, like
user and patient download.
</description>
<url>https://wiki.openmrs.org/display/docs/XForms+Module</url>
<developers>
<developer>
<id>dkayiwa</id>
<name>Daniel Kayiwa</name>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:openmrs/openmrs-module-xforms.git</connection>
<developerConnection>scm:git:git@github.com:openmrs/openmrs-module-xforms.git</developerConnection>
<url>https://github.com/openmrs/openmrs-module-xforms.git</url>
<tag>HEAD</tag>
</scm>
<distributionManagement>
<repository>
<id>openmrs-repo-releases</id>
<name>OpenMRS Releases</name>
<url>https://mavenrepo.openmrs.org/releases</url>
</repository>
<snapshotRepository>
<id>openmrs-repo-snapshots</id>
<name>OpenMRS Snapshots</name>
<url>https://mavenrepo.openmrs.org/snapshots</url>
</snapshotRepository>
</distributionManagement>
<repositories>
<repository>
<id>openmrs-repo</id>
<name>OpenMRS Public</name>
<url>https://mavenrepo.openmrs.org/public</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>openmrs-repo</id>
<name>OpenMRS Public</name>
<url>https://mavenrepo.openmrs.org/public</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
<modules>
<module>api</module>
<module>omod</module>
</modules>
<properties>
<openmrsPlatformVersion>1.9.9</openmrsPlatformVersion>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<appframeworkVersion>2.1</appframeworkVersion>
<uiframeworkVersion>3.2</uiframeworkVersion>
<appuiVersion>1.1</appuiVersion>
<uicommonsVersion>1.0</uicommonsVersion>
<emrapiVersion>1.1</emrapiVersion>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<doclint>none</doclint>
<failOnError>false</failOnError>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencies>
<!-- Dependencies deployed under org.openmrs.module.xforms come from the
pre-maven lib directory. It was difficult to determine their exact versions,
therefore they have been deployed as customized jars. Do not trust the specified
versions and treat them only as hints. -->
<dependency>
<groupId>org.openmrs.module.xforms</groupId>
<artifactId>jzlib</artifactId>
<version>1.0.7</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.openmrs.module.xforms</groupId>
<artifactId>kxml2</artifactId>
<version>2.3.0</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.openmrs.module.xforms</groupId>
<artifactId>jdom</artifactId>
<version>1.1.1</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.openmrs.module.xforms</groupId>
<artifactId>jaxen</artifactId>
<version>1.0</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.openmrs.module.xforms</groupId>
<artifactId>sms-server</artifactId>
<version>1.0</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.openmrs.module.xforms</groupId>
<artifactId>bluetooth-server</artifactId>
<version>1.0</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.openmrs.module.xforms</groupId>
<artifactId>dwr-mod</artifactId>
<version>1.1.3</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.openmrs.module.xforms</groupId>
<artifactId>epihandy-xforms-server</artifactId>
<version>1.0</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
</dependencies>
</project>