2015-04-09 17:54:33 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
|
|
Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
contributor license agreements. See the NOTICE file distributed with
|
|
|
|
this work for additional information regarding copyright ownership.
|
|
|
|
The ASF licenses this file to You under the Apache License, Version 2.0
|
|
|
|
(the "License"); you may not use this file except in compliance with
|
|
|
|
the License. You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
-->
|
|
|
|
<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>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-hl7-bundle</artifactId>
|
2018-01-12 15:15:32 -05:00
|
|
|
<version>1.6.0-SNAPSHOT</version>
|
2015-04-09 17:54:33 -04:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>nifi-hl7-processors</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2015-04-25 08:38:28 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.rat</groupId>
|
|
|
|
<artifactId>apache-rat-plugin</artifactId>
|
|
|
|
<configuration>
|
2015-06-04 12:11:35 -04:00
|
|
|
<excludes combine.children="append">
|
2015-04-25 08:38:28 -04:00
|
|
|
<exclude>src/test/resources/hypoglycemia.hl7</exclude>
|
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2015-04-10 14:25:53 -04:00
|
|
|
|
2015-04-09 17:54:33 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
2016-11-17 17:09:49 -05:00
|
|
|
<artifactId>nifi-utils</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
2015-04-09 17:54:33 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2015-04-25 08:38:28 -04:00
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-hl7-query-language</artifactId>
|
2015-04-09 17:54:33 -04:00
|
|
|
</dependency>
|
2017-03-09 14:00:05 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-beanutils</groupId>
|
|
|
|
<artifactId>commons-beanutils</artifactId>
|
2017-03-09 22:00:41 -05:00
|
|
|
<version>1.9.3</version>
|
2017-03-09 14:00:05 -05:00
|
|
|
</dependency>
|
2015-04-09 17:54:33 -04:00
|
|
|
<dependency>
|
2015-04-25 08:38:28 -04:00
|
|
|
<groupId>ca.uhn.hapi</groupId>
|
|
|
|
<artifactId>hapi-base</artifactId>
|
|
|
|
<version>2.2</version>
|
2017-03-09 14:00:05 -05:00
|
|
|
</dependency>
|
2015-04-25 08:38:28 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>ca.uhn.hapi</groupId>
|
|
|
|
<artifactId>hapi-structures-v21</artifactId>
|
|
|
|
<version>2.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ca.uhn.hapi</groupId>
|
|
|
|
<artifactId>hapi-structures-v22</artifactId>
|
|
|
|
<version>2.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ca.uhn.hapi</groupId>
|
|
|
|
<artifactId>hapi-structures-v23</artifactId>
|
|
|
|
<version>2.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ca.uhn.hapi</groupId>
|
|
|
|
<artifactId>hapi-structures-v231</artifactId>
|
|
|
|
<version>2.2</version>
|
|
|
|
</dependency>
|
2015-04-09 17:54:33 -04:00
|
|
|
<dependency>
|
2015-04-25 08:38:28 -04:00
|
|
|
<groupId>ca.uhn.hapi</groupId>
|
|
|
|
<artifactId>hapi-structures-v24</artifactId>
|
|
|
|
<version>2.2</version>
|
|
|
|
</dependency>
|
2015-04-09 17:54:33 -04:00
|
|
|
<dependency>
|
2015-04-25 08:38:28 -04:00
|
|
|
<groupId>ca.uhn.hapi</groupId>
|
|
|
|
<artifactId>hapi-structures-v25</artifactId>
|
|
|
|
<version>2.2</version>
|
|
|
|
</dependency>
|
2015-04-09 17:54:33 -04:00
|
|
|
<dependency>
|
2015-04-25 08:38:28 -04:00
|
|
|
<groupId>ca.uhn.hapi</groupId>
|
|
|
|
<artifactId>hapi-structures-v251</artifactId>
|
|
|
|
<version>2.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ca.uhn.hapi</groupId>
|
|
|
|
<artifactId>hapi-structures-v26</artifactId>
|
|
|
|
<version>2.2</version>
|
|
|
|
</dependency>
|
2017-03-09 14:00:05 -05:00
|
|
|
|
2015-04-09 17:54:33 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-mock</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|