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.
|
|
|
|
-->
|
2015-05-11 14:21:13 -04:00
|
|
|
<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">
|
2015-04-21 02:15:46 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2015-08-03 23:32:48 -04:00
|
|
|
|
2015-04-21 02:15:46 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.nifi</groupId>
|
|
|
|
<artifactId>nifi-commons</artifactId>
|
2017-05-05 20:50:28 -04:00
|
|
|
<version>1.3.0-SNAPSHOT</version>
|
2015-04-21 02:15:46 -04:00
|
|
|
</parent>
|
2015-08-03 23:32:48 -04:00
|
|
|
|
2015-04-21 02:15:46 -04:00
|
|
|
<artifactId>nifi-hl7-query-language</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<source>1.7</source>
|
|
|
|
<target>1.7</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.antlr</groupId>
|
|
|
|
<artifactId>antlr3-maven-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>antlr</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<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-21 02:15:46 -04:00
|
|
|
<exclude>src/test/resources/hypoglycemia</exclude>
|
|
|
|
<exclude>src/test/resources/hyperglycemia</exclude>
|
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<excludes>**/HL7QueryParser.java,**/HL7QueryLexer.java</excludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2015-04-09 17:54:33 -04:00
|
|
|
|
2015-04-21 02:15:46 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.antlr</groupId>
|
|
|
|
<artifactId>antlr-runtime</artifactId>
|
|
|
|
</dependency>
|
2015-08-03 23:32:48 -04:00
|
|
|
|
2015-04-21 02:15:46 -04:00
|
|
|
<!-- HAPI to parse v2 messages -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>ca.uhn.hapi</groupId>
|
|
|
|
<artifactId>hapi-base</artifactId>
|
|
|
|
<version>2.2</version>
|
|
|
|
</dependency>
|
|
|
|
<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>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ca.uhn.hapi</groupId>
|
|
|
|
<artifactId>hapi-structures-v24</artifactId>
|
|
|
|
<version>2.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ca.uhn.hapi</groupId>
|
|
|
|
<artifactId>hapi-structures-v25</artifactId>
|
|
|
|
<version>2.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<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>
|
2015-04-09 17:54:33 -04:00
|
|
|
|
|
|
|
|
2015-04-21 02:15:46 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2015-04-09 17:54:33 -04:00
|
|
|
</project>
|