forked from NovaMap-Health/tls-manager-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
214 lines (189 loc) · 7.96 KB
/
Copy pathpom.xml
File metadata and controls
214 lines (189 loc) · 7.96 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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
<?xml version="1.0" encoding="UTF-8"?>
<!-- SPDX-License-Identifier: Apache-2.0 OR MPL-2.0 -->
<!-- Copyright (c) 2021 Kaur Palang -->
<!-- Copyright (c) 2025 NovaMap Health Limited <https://novamap.health> -->
<!-- Modifications from commit d2fbac7328eda7b7a68348a4adcbb3a9961868b9 onward licensed under MPL-2.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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.openintegrationengine</groupId>
<artifactId>tlsmanager</artifactId>
<version>1.0.4</version>
<packaging>pom</packaging>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
<comments>Original code up to and including ff753e7ff2a304a63723924fcc68c6f883c96fc2 licensed under Apache 2.0.</comments>
</license>
<license>
<name>Mozilla Public License 2.0</name>
<url>https://www.mozilla.org/en-US/MPL/2.0/</url>
<distribution>repo</distribution>
<comments>Modifications licensed under MPL-2.0.</comments>
</license>
</licenses>
<modules>
<module>server</module>
<module>shared</module>
<module>client</module>
</modules>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<mirth.version>4.5.2</mirth.version>
<maven-processor-plugin.version>5.1</maven-processor-plugin.version>
<maven-assembly-plugin.version>3.7.1</maven-assembly-plugin.version>
<maven-jarsigner-plugin.version>3.0.0</maven-jarsigner-plugin.version>
<mirth-plugin-maven-plugin.version>2.1.0-SNAPSHOT</mirth-plugin-maven-plugin.version>
<lombok.version>1.18.32</lombok.version>
<slf4j.version>1.7.30</slf4j.version>
<miglayout.version>3.7.4</miglayout.version>
<junit.version>5.13.4</junit.version>
<mockito.version>5.19.0</mockito.version>
<git.hash>dev</git.hash>
<!-- Plugin details -->
<mirth.plugin.author>NovaMap Health</mirth.plugin.author>
<mirth.plugin.compatible_versions>4.5.2</mirth.plugin.compatible_versions>
<mirth.plugin.description>TLS-enabled networking Connectors & Certificate Management</mirth.plugin.description>
<mirth.plugin.name>TLS Manager</mirth.plugin.name>
<mirth.plugin.path>tls-manager</mirth.plugin.path>
<mirth.plugin.url>https://novamap.health</mirth.plugin.url>
<mirth.plugin.version>${project.version}</mirth.plugin.version>
</properties>
<repositories>
<repository>
<id>repsy-default</id>
<url>https://repo.repsy.io/mvn/kpalang/default</url>
</repository>
<repository>
<id>repsy-mirthconnect</id>
<url>https://repo.repsy.io/mvn/kpalang/mirthconnect</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>repsy-default</id>
<url>https://repo.repsy.io/mvn/kpalang/default</url>
</pluginRepository>
</pluginRepositories>
<dependencies>
<!-- Helper plugin to handle Mirth plugin specific tasks. -->
<dependency>
<groupId>com.kaurpalang</groupId>
<artifactId>mirth-plugin-maven-plugin</artifactId>
<version>${mirth-plugin-maven-plugin.version}</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<configLocation>checkstyle.xml</configLocation>
<failsOnError>true</failsOnError>
</configuration>
</plugin>
</plugins>
</reporting>
<build>
<!-- Specify naming pattern for submodules. For example pluginname-client.jar -->
<finalName>${project.parent.artifactId}-${project.artifactId}</finalName>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>3.6.0</version>
<dependencies>
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>12.2.0</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jarsigner-plugin</artifactId>
<version>${maven-jarsigner-plugin.version}</version>
<executions>
<execution>
<id>sign</id>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
<configuration>
<keystore>${project.parent.basedir}/certificate/keystore.jks</keystore>
<alias>selfsigned</alias>
<storepass>storepass</storepass>
<keypass>keypass</keypass>
</configuration>
</plugin>
<plugin>
<groupId>org.bsc.maven</groupId>
<artifactId>maven-processor-plugin</artifactId>
<version>${maven-processor-plugin.version}</version>
<executions>
<execution>
<id>process</id>
<goals>
<goal>process</goal>
</goals>
<phase>process-sources</phase>
<configuration>
<processors>
<processor>com.kaurpalang.mirth.annotationsplugin.processor.MirthPluginProcessor</processor>
</processors>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>