2014-02-17 17:58:32 -05:00
<?xml version="1.0" encoding="UTF-8"?>
2018-03-28 06:15:28 -04:00
<project xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xmlns= "http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2014-02-17 17:58:32 -05:00
<modelVersion > 4.0.0</modelVersion>
<groupId > ca.uhn.hapi.fhir</groupId>
<artifactId > hapi-fhir</artifactId>
<packaging > pom</packaging>
2020-11-18 14:52:43 -05:00
<version > 5.3.0-SNAPSHOT</version>
2014-07-02 08:57:07 -04:00
<name > HAPI-FHIR</name>
2018-05-28 12:57:51 -04:00
<description > An open-source implementation of the FHIR specification in Java.</description>
2016-11-11 20:30:09 -05:00
<url > https://hapifhir.io</url>
2014-05-11 21:46:36 -04:00
2014-04-24 12:25:47 -04:00
<organization >
2021-01-01 15:07:23 -05:00
<name > Smile CDR, Inc.</name>
<url > https://smilecdr.com</url>
2014-04-24 12:25:47 -04:00
</organization>
2014-05-11 21:46:36 -04:00
2014-04-24 12:25:47 -04:00
<inceptionYear > 2014</inceptionYear>
2014-05-11 21:46:36 -04:00
2014-08-28 09:44:04 -04:00
<issueManagement >
<system > GitHub</system>
2021-01-01 15:07:23 -05:00
<url > https://github.com/hapifhir/hapi-fhir/issues/</url>
2014-08-28 09:44:04 -04:00
</issueManagement>
2014-09-03 18:03:44 -04:00
2014-11-07 14:26:59 -05:00
<distributionManagement >
2018-04-29 08:02:05 -04:00
<snapshotRepository >
<id > ossrh</id>
<url > https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
2018-05-28 10:52:46 -04:00
<repository >
<id > ossrh</id>
<url > https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
2014-11-07 14:26:59 -05:00
<site >
<id > git.server</id>
2021-01-01 15:07:23 -05:00
<url > scm:git:git@github.com:hapifhir/hapi-fhir.git</url>
2014-11-07 14:26:59 -05:00
</site>
</distributionManagement>
2014-08-28 09:44:04 -04:00
<scm >
2021-01-01 15:07:23 -05:00
<connection > scm:git:git@github.com:hapifhir/hapi-fhir.git</connection>
<url > scm:git:git@github.com:hapifhir/hapi-fhir.git</url>
<developerConnection > scm:git:git@github.com:hapifhir/hapi-fhir.git</developerConnection>
2014-08-28 09:44:04 -04:00
</scm>
2014-09-03 18:03:44 -04:00
2016-09-17 16:55:21 -04:00
<repositories >
2019-09-24 14:38:38 -04:00
<!--
2016-09-25 17:54:44 -04:00
<repository >
<id > jitpack.io</id>
<url > https://jitpack.io</url>
2018-05-14 17:38:40 -04:00
<snapshots >
<enabled > false</enabled>
</snapshots>
</repository>
2019-09-24 14:38:38 -04:00
-->
2018-05-14 17:38:40 -04:00
<repository >
<id > oss-snapshot</id>
<url > https://oss.sonatype.org/content/repositories/snapshots/</url>
<snapshots >
<enabled > true</enabled>
</snapshots>
2019-09-24 14:38:38 -04:00
<releases >
<enabled > false</enabled>
</releases>
2016-09-25 17:54:44 -04:00
</repository>
2016-09-17 16:55:21 -04:00
</repositories>
2014-02-17 17:58:32 -05:00
<dependencies >
2015-08-19 11:49:00 -04:00
<!-- Cobertura is here as a 'provided' depdendency just to get the @CoverageIgnore annotation. It would be nice if there was a better way for this.. -->
2019-10-22 11:55:55 -04:00
<!-- <dependency> <groupId>net.sourceforge.cobertura</groupId> <artifactId>cobertura</artifactId> <version>2.1.1</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>jetty</artifactId>
2016-01-28 11:36:59 -05:00
<groupId > org.mortbay.jetty</groupId> </exclusion> </exclusions> </dependency> -->
2015-08-19 11:49:00 -04:00
<dependency >
2020-07-04 18:28:16 -04:00
<groupId > org.junit.jupiter</groupId>
<artifactId > junit-jupiter</artifactId>
<scope > test</scope>
</dependency>
<dependency >
<groupId > org.junit.jupiter</groupId>
<artifactId > junit-jupiter-api</artifactId>
<scope > test</scope>
</dependency>
<dependency >
<groupId > org.junit.jupiter</groupId>
<artifactId > junit-jupiter-engine</artifactId>
2015-08-19 11:49:00 -04:00
<scope > test</scope>
</dependency>
<dependency >
<groupId > org.hamcrest</groupId>
2020-04-17 13:59:22 -04:00
<artifactId > hamcrest</artifactId>
2015-08-19 11:49:00 -04:00
<scope > test</scope>
</dependency>
<dependency >
<groupId > org.mockito</groupId>
2018-05-03 18:34:29 -04:00
<artifactId > mockito-core</artifactId>
2015-08-19 11:49:00 -04:00
<scope > test</scope>
2015-06-21 00:56:23 -04:00
</dependency>
2020-07-04 18:28:16 -04:00
<dependency >
<groupId > org.mockito</groupId>
<artifactId > mockito-junit-jupiter</artifactId>
<scope > test</scope>
</dependency>
2014-02-17 17:58:32 -05:00
</dependencies>
2014-04-23 15:24:31 -04:00
<developers >
<developer >
2014-09-26 09:37:41 -04:00
<id > jamesagnew</id>
2014-04-23 15:24:31 -04:00
<name > James Agnew</name>
2020-05-23 17:22:59 -04:00
<organization > Smile CDR</organization>
2014-04-23 15:24:31 -04:00
</developer>
2019-12-14 18:18:51 -05:00
<developer >
<id > grahamegrieve</id>
<name > Grahame Grieve</name>
<organization > Health Intersections</organization>
</developer>
2017-03-01 13:29:03 -05:00
<developer >
<id > dmuylwyk</id>
<name > Diederik Muylwyk</name>
<organization > Smile CDR</organization>
</developer>
2014-04-23 15:24:31 -04:00
<developer >
2019-12-14 18:18:51 -05:00
<id > fil512</id>
<name > Ken Stevens</name>
<organization > Smile CDR</organization>
</developer>
<developer >
<id > yogthos</id>
2014-04-23 15:24:31 -04:00
<name > Dmitri Sotnikov</name>
2014-09-26 09:37:41 -04:00
<organization > University Health Network</organization>
2014-04-23 15:24:31 -04:00
</developer>
<developer >
2019-12-14 18:18:51 -05:00
<id > </id>
2014-04-23 15:24:31 -04:00
<name > Lisa Wong</name>
2014-09-26 09:37:41 -04:00
<organization > University Health Network</organization>
2014-04-23 15:24:31 -04:00
</developer>
<developer >
2019-12-14 18:18:51 -05:00
<id > jmandel</id>
2014-04-23 15:24:31 -04:00
<name > Josh Mandel</name>
2014-09-18 17:13:43 -04:00
<organization > Boston Children's Hospital</organization>
2014-04-23 15:24:31 -04:00
</developer>
2014-07-02 08:57:07 -04:00
<developer >
2014-11-14 10:52:38 -05:00
<id > lmds</id>
2014-07-02 08:57:07 -04:00
<name > Laura MacDougall Sookraj</name>
2014-09-26 09:37:41 -04:00
<organization > University Health Network</organization>
</developer>
<developer >
2019-12-14 18:18:51 -05:00
<id > t106uhn</id>
2014-09-26 09:37:41 -04:00
<name > Neal Acharya</name>
<organization > University Health Network</organization>
2014-09-18 17:13:43 -04:00
</developer>
<developer >
2019-12-14 18:18:51 -05:00
<id > davidhay25</id>
2014-09-18 17:13:43 -04:00
<name > David Hay</name>
<organization > Orion Health</organization>
</developer>
2015-02-05 14:04:16 -05:00
<developer >
<id > sweetnavelorange</id>
<name > James Butler</name>
<organization > Orion Health</organization>
</developer>
2014-09-18 17:13:43 -04:00
<developer >
<id > suranga</id>
<name > Suranga Nath Kasthurirathne</name>
2014-09-26 09:37:41 -04:00
<organization > OpenMRS / Regenstrief Center for Biomedical Informatics</organization>
2014-09-18 17:13:43 -04:00
</developer>
<developer >
<id > dougmartin</id>
<name > Doug Martin</name>
<organization > Regenstrief Center for Biomedical Informatics</organization>
2014-07-02 08:57:07 -04:00
</developer>
2014-09-26 09:37:41 -04:00
<developer >
<id > akley</id>
<name > Alexander Kley</name>
</developer>
2014-10-17 16:03:33 -04:00
<developer >
<id > preston</id>
<name > Preston Lee</name>
<organization > Arizona State University</organization>
</developer>
<developer >
2014-11-20 16:29:10 -05:00
<id > jjathman</id>
2014-10-17 16:03:33 -04:00
<name > Joe Athman</name>
</developer>
2014-10-17 16:39:47 -04:00
<developer >
<id > petromykhailysyn</id>
<name > Petro Mykhailyshyn</name>
</developer>
2014-11-20 14:42:24 -05:00
<developer >
<id > tahurac</id>
<name > Tahura Chaudhry</name>
<organization > University Health Network</organization>
</developer>
2014-12-10 10:24:04 -05:00
<developer >
<id > b.debeaubien</id>
<name > Bill de Beaubien</name>
<organization > Systems Made Simple</organization>
</developer>
2015-02-03 10:39:54 -05:00
<developer >
<id > twilson650</id>
<name > Tom Wilson</name>
</developer>
2015-02-09 10:07:53 -05:00
<developer >
<id > esteban-aliverti</id>
<name > Esteban Aliverti</name>
</developer>
2015-02-24 07:49:31 -05:00
<developer >
<id > mochaholic</id>
<name > Mohammad Jafari</name>
<organization > Edmond Scientific Company</organization>
</developer>
2015-05-04 13:02:50 -04:00
<developer >
<id > joel-costigliola</id>
<name > Joel Costigliola</name>
<organization > JCOS-Technologies</organization>
</developer>
2015-08-25 07:49:14 -04:00
<developer >
<id > pukkaone</id>
<name > Chin Huang</name>
</developer>
2015-08-31 02:46:05 -04:00
<developer >
<id > SingingTree</id>
<name > Bryce Van Dyk</name>
2015-09-11 16:13:40 -04:00
</developer>
2015-10-01 11:45:33 -04:00
<developer >
<id > botunge</id>
<name > Thomas Andersen</name>
</developer>
2015-10-21 12:03:36 -04:00
<developer >
<id > samlanfranchi</id>
<name > Sam Lanfranchi</name>
</developer>
2015-10-27 18:34:27 -04:00
<developer >
<id > jkiddo</id>
<name > Jens Kristian Villadsen</name>
</developer>
2015-11-15 12:53:02 -05:00
<developer >
<id > cmikeb1</id>
<name > C. Mike Bylund</name>
</developer>
2015-11-26 07:03:01 -05:00
<developer >
<id > nrpeterson</id>
<name > Nick Peterson</name>
</developer>
2015-11-27 15:03:05 -05:00
<developer >
<id > petervanhoute</id>
<name > Peter Van Houte</name>
</developer>
2016-05-22 14:56:27 -04:00
<developer >
<id > SRiviere</id>
2017-12-07 13:23:50 -05:00
<name > Sebastien Riviere</name>
2016-05-22 14:56:27 -04:00
</developer>
2016-01-07 21:37:04 -05:00
<developer >
<id > karlmdavis</id>
<name > Karl M. Davis</name>
2020-05-23 17:22:59 -04:00
<organization > CMS</organization>
2016-01-07 21:37:04 -05:00
</developer>
2016-01-21 21:45:57 -05:00
<developer >
<id > matt-blanchette</id>
<name > Matt Blanchette</name>
</developer>
2016-02-03 14:08:52 -05:00
<developer >
<id > petromykhailysyn</id>
<name > Petro Mykhaylyshyn</name>
</developer>
2016-02-08 22:04:30 -05:00
<developer >
<id > adam-carbone</id>
<name > Adam Carbone</name>
</developer>
2016-02-28 15:47:34 -05:00
<developer >
<id > joelsch</id>
2017-03-01 03:06:55 -05:00
<name > Joel Schneider</name>
2016-02-28 15:50:31 -05:00
</developer>
2016-05-05 06:59:50 -04:00
<developer >
<id > euvitudo</id>
<name > Phillip Warner</name>
</developer>
2016-05-05 07:08:48 -04:00
<developer >
<id > subhrajyotim</id>
<name > Subhro</name>
</developer>
2016-07-19 19:15:56 -04:00
<developer >
<id > mion00</id>
<name > Carlo Mion</name>
</developer>
2016-08-02 20:18:59 -04:00
<developer >
<id > kiwiandroiddev</id>
<name > Matt Clarke</name>
<organization > Orion Health</organization>
2016-09-16 13:16:28 -04:00
</developer>
<developer >
<id > FilipDomazet</id>
<name > Filip Domazet</name>
2016-08-02 20:18:59 -04:00
</developer>
2016-10-19 10:39:54 -04:00
<developer >
<id > bdenton</id>
<name > Bill Denton</name>
<organization > Akana, Inc</organization>
</developer>
2016-10-20 11:28:02 -04:00
<developer >
<id > hnnesv</id>
<name > Hannes Venter</name>
<organization > Jembi Health Systems</organization>
</developer>
2016-11-04 18:59:42 -04:00
<developer >
<id > vadi2</id>
<name > Vadim Peretokin</name>
2020-05-23 19:17:33 -04:00
<organization > Firely</organization>
2016-11-04 18:59:42 -04:00
</developer>
2016-11-25 18:28:18 -05:00
<developer >
<id > lawley</id>
<name > Michael Lawley</name>
<organization > CSIRO</organization>
</developer>
2016-12-11 18:30:05 -05:00
<developer >
<id > CarthageKing</id>
<name > CarthageKing</name>
</developer>
2016-12-12 07:32:36 -05:00
<developer >
<id > gijsbert802</id>
<name > Gijsbert van den Brink</name>
</developer>
2016-12-12 07:41:24 -05:00
<developer >
<id > rqg0717</id>
<name > James Ren</name>
</developer>
2017-01-29 18:01:00 -05:00
<developer >
<id > Robbert1</id>
<name > Robbert van Waveren</name>
</developer>
2017-01-31 07:22:38 -05:00
<developer >
<id > daliboz</id>
<name > Jenny Syed</name>
2020-05-23 19:17:33 -04:00
<organization > Cerner Corporation</organization>
2017-01-31 07:22:38 -05:00
</developer>
2017-02-04 16:10:59 -05:00
<developer >
<id > sekaijin</id>
<name > sekaijin</name>
</developer>
2017-03-16 21:57:55 -04:00
<developer >
<id > hugosoares</id>
<name > Hugo Soares</name>
</developer>
2017-03-17 06:30:52 -04:00
<developer >
<id > SRiviere</id>
<name > Sebastien Riviere</name>
</developer>
2017-03-17 06:49:09 -04:00
<developer >
<id > jodue</id>
<name > jodue</name>
</developer>
2017-03-17 06:52:23 -04:00
<developer >
<id > joelsch</id>
<name > Joel Schneider</name>
2020-05-23 17:22:59 -04:00
<organization > National Marrow Donor Program</organization>
2017-03-17 06:52:23 -04:00
</developer>
2017-04-17 18:03:55 -04:00
<developer >
<id > dangerousben</id>
<name > Ben Spencer</name>
</developer>
2017-06-07 21:14:53 -04:00
<developer >
<id > maclema</id>
<name > maclema</name>
</developer>
2017-06-07 21:29:16 -04:00
<developer >
<id > ohr</id>
<name > Christian Ohr</name>
2020-05-23 19:17:33 -04:00
<organization > InterComponentWare AG</organization>
2017-06-07 21:29:16 -04:00
</developer>
2017-07-10 16:07:33 -04:00
<developer >
<id > eug48</id>
2017-07-11 11:06:50 -04:00
<name > Eugene Lubarsky</name>
2017-07-10 16:07:33 -04:00
</developer>
2017-07-13 19:38:28 -04:00
<developer >
<id > SarenCurrie</id>
<name > Saren Currie</name>
</developer>
2017-08-02 14:50:44 -04:00
<developer >
<id > dconlan</id>
<name > dconlan</name>
</developer>
2017-08-13 10:57:06 -04:00
<developer >
<id > psbrandt</id>
<name > Pascal Brandt</name>
</developer>
2017-08-13 11:03:06 -04:00
<developer >
<id > InfiniteLoop90</id>
<name > Clayton Bodendein</name>
</developer>
2017-08-22 08:46:46 -04:00
<developer >
<id > rhausam</id>
<name > Rob Hausam</name>
</developer>
2017-10-30 16:18:10 -04:00
<developer >
<id > patrick-werner</id>
<name > Patrick Werner</name>
</developer>
2017-11-01 15:37:05 -04:00
<developer >
<id > malcolmm83</id>
<name > Malcolm McRoberts</name>
</developer>
2017-11-13 13:22:17 -05:00
<developer >
<id > mouellet</id>
<name > Mathieu Ouellet</name>
</developer>
2017-11-13 13:35:10 -05:00
<developer >
<id > JiajingLiang</id>
<name > Jiajing Liang</name>
</developer>
2017-11-22 20:05:37 -05:00
<developer >
<id > jamesdaily</id>
<name > James Daily</name>
</developer>
2017-12-22 16:10:05 -05:00
<developer >
<id > darktyko</id>
<name > Kyle Meadows</name>
</developer>
2018-03-02 08:57:40 -05:00
<developer >
<id > Tastelezz</id>
<name > Gaetano Gallo</name>
</developer>
2018-03-12 06:45:13 -04:00
<developer >
<id > sjanic</id>
<name > sjanic</name>
</developer>
2018-03-15 06:48:41 -04:00
<developer >
<id > c-schuler</id>
<name > Chris Schuler</name>
</developer>
2018-03-19 06:25:49 -04:00
<developer >
<id > javajeff</id>
<name > Jeff Chung</name>
</developer>
2018-03-23 06:35:53 -04:00
<developer >
<id > anoush-bch</id>
<name > Anoush Mouradian</name>
</developer>
2018-03-23 06:49:41 -04:00
<developer >
<id > splatch</id>
<name > Łukasz Dywicki</name>
</developer>
2018-03-26 08:43:28 -04:00
<developer >
<id > anthonys123</id>
<name > Anthony Sute</name>
</developer>
2018-03-27 06:13:44 -04:00
<developer >
<id > johnpoth</id>
<name > John Poth</name>
<organization > Red Hat</organization>
</developer>
2018-05-03 04:50:33 -04:00
<developer >
<id > t4deon</id>
<name > Andreas Keil</name>
</developer>
2018-05-22 08:44:17 -04:00
<developer >
<id > RuthAlk</id>
2018-11-08 13:24:24 -05:00
<name > Ruth Alkema</name>
2018-05-22 08:44:17 -04:00
</developer>
2018-05-23 06:07:32 -04:00
<developer >
<id > Tastelezz</id>
<name > Gaetano Gallo</name>
<organization > InterComponentWare AG</organization>
</developer>
2018-05-23 06:21:00 -04:00
<developer >
<id > jasonaown</id>
<name > Jason Owen</name>
</developer>
2018-05-23 06:32:52 -04:00
<developer >
<id > hdconradi</id>
<name > Heinz-Dieter Conradi</name>
</developer>
2018-05-28 06:04:04 -04:00
<developer >
<id > kliu99</id>
<name > Kai Liu</name>
</developer>
2018-06-03 15:31:40 -04:00
<developer >
<id > Romanow88</id>
<name > Roman Doboni</name>
</developer>
2018-06-24 15:12:04 -04:00
<developer >
<id > franktao2008</id>
<name > Frank Tao</name>
<organization > Smile CDR</organization>
</developer>
2018-07-30 09:15:28 -04:00
<developer >
<id > anamariaradu10</id>
<name > Ana Maria Radu</name>
2018-07-30 11:12:53 -04:00
<organization > Cerner Corporation</organization>
2018-07-30 09:15:28 -04:00
</developer>
2018-08-12 17:56:42 -04:00
<developer >
<id > alinleonard</id>
<name > Alin Leonard</name>
2018-09-01 02:38:52 -04:00
<organization > Cerner Corporation</organization>
</developer>
<developer >
<id > jbalbien</id>
2018-08-12 17:56:42 -04:00
</developer>
2018-11-08 13:33:25 -05:00
<developer >
<id > volsch</id>
<name > Volker Schmidt</name>
2020-05-23 19:17:33 -04:00
<organization > DHIS2 / University of Oslo</organization>
2018-11-08 13:33:25 -05:00
</developer>
2018-11-15 07:37:32 -05:00
<developer >
<id > magnuswatn</id>
<name > Magnus Watn</name>
2018-11-16 03:21:53 -05:00
</developer>
2018-12-21 05:42:39 -05:00
<developer >
<id > Cory00</id>
</developer>
2019-01-09 07:19:55 -05:00
<developer >
<id > srdo</id>
<name > Stig Døssing</name>
</developer>
2019-01-13 18:22:29 -05:00
<developer >
<id > ruoat</id>
<name > Ari Ruotsalainen</name>
</developer>
2019-01-31 05:20:43 -05:00
<developer >
<id > stevelle</id>
<name > Steve Lewis</name>
<organization > Cambia Health Solutions</organization>
</developer>
2019-01-31 05:26:14 -05:00
<developer >
<id > restevez-chs</id>
<name > Ricardo Estevez</name>
<organization > Cambia Health Solutions</organization>
</developer>
2019-02-02 11:33:08 -05:00
<developer >
<id > zilin375</id>
</developer>
2019-05-22 17:13:33 -04:00
<developer >
<id > basecade</id>
<name > Anders Havn</name>
</developer>
2021-01-17 09:44:18 -05:00
<developer >
<id > vedion</id>
<name > Anders Havn</name>
</developer>
2019-05-23 09:09:44 -04:00
<developer >
<id > zaewonyx</id>
</developer>
2019-05-29 21:22:54 -04:00
<developer >
<id > tadgh</id>
<name > Gary Graham</name>
2020-05-23 19:17:33 -04:00
<organization > Smile CDR</organization>
2019-05-29 21:22:54 -04:00
</developer>
2019-05-29 21:44:30 -04:00
<developer >
<id > nerdydrew</id>
<name > Drew Mitchell</name>
</developer>
2019-06-10 11:14:52 -04:00
<developer >
<id > srdo</id>
<name > Stig Døssing</name>
</developer>
2019-06-25 18:31:25 -04:00
<developer >
<id > gteichrow</id>
<name > Gary Teichrow</name>
</developer>
2019-08-01 06:38:37 -04:00
<developer >
<id > sethrylan</id>
<name > Seth Rylan Gainey</name>
<url > http://sethrylan.org/</url>
</developer>
2019-08-01 09:29:43 -04:00
<developer >
<id > uurl</id>
<name > Raul Estrada</name>
2019-08-12 13:35:27 -04:00
</developer>
2019-08-13 05:37:40 -04:00
<developer >
<id > nickrobison-usds</id>
<name > Nick Robison</name>
</developer>
2019-09-01 18:41:17 -04:00
<developer >
<id > fitzoh</id>
<name > Andrew Fitzgerald</name>
</developer>
2019-09-19 20:41:02 -04:00
<developer >
<id > dmap</id>
<name > David Maplesden</name>
</developer>
2019-10-01 05:32:54 -04:00
<developer >
<id > jaferkhan</id>
2019-11-30 17:35:35 -05:00
<name > Jafer Khan Shamshad</name>
2019-10-01 05:32:54 -04:00
</developer>
2019-10-01 15:20:48 -04:00
<developer >
<id > CodeAndChoke</id>
<name > Long Nguyen</name>
</developer>
2019-10-18 07:07:02 -04:00
<developer >
<id > tuomoa</id>
<name > Tuomo Ala-Vannesluoma</name>
</developer>
2019-10-22 14:01:21 -04:00
<developer >
<id > jelmerterwal</id>
<name > Jelmer ter Wal</name>
2019-10-22 14:17:25 -04:00
</developer>
2019-10-31 08:21:11 -04:00
<developer >
<id > jiaola</id>
<name > Dazhi Jiao</name>
</developer>
2020-01-29 05:56:36 -05:00
<developer >
<id > dionmcm</id>
</developer>
2020-02-04 17:38:42 -05:00
<developer >
<id > ttntrifork</id>
<organization > Trifork</organization>
<name > Tue Toft Nørgård</name>
</developer>
2020-05-24 09:32:44 -04:00
<developer >
<id > mzgtrifork</id>
<organization > Trifork</organization>
<name > Martin Zacho Grønhøj</name>
</developer>
2020-03-23 19:12:05 -04:00
<developer >
<id > augla</id>
<name > August Langhout</name>
</developer>
2020-04-18 11:14:15 -04:00
<developer >
<id > dgileadi</id>
<name > David Gileadi</name>
</developer>
2020-04-21 15:30:42 -04:00
<developer >
<id > ibrohimislam</id>
<name > Ibrohim Kholilul Islam</name>
</developer>
2020-04-21 15:49:43 -04:00
<developer >
<id > mkucharek</id>
<name > Maciej Kucharek</name>
</developer>
2020-04-29 09:12:36 -04:00
<developer >
<id > Thopap</id>
<name > Thomas Papke</name>
<organization > InterComponentWare AG</organization>
</developer>
2020-05-01 05:56:47 -04:00
<developer >
<id > Bert-R</id>
<name > Bert Roos</name>
</developer>
2020-05-01 07:27:12 -04:00
<developer >
<id > zilin375</id>
<name > Zhe Wang</name>
<organization > Agfa Healthcare</organization>
</developer>
2020-05-01 07:38:31 -04:00
<developer >
<id > gematik-fue</id>
<name > gematik FuE</name>
</developer>
2020-05-04 05:42:32 -04:00
<developer >
<id > ibacher</id>
<name > Ian</name>
</developer>
2020-05-23 17:16:19 -04:00
<developer >
<id > jasmdk</id>
<name > Jacob Stampe Mikkelsen</name>
<organization > Systematik A/S</organization>
</developer>
2020-05-23 17:18:37 -04:00
<developer >
<id > craigappl</id>
<name > Craig Appl</name>
<organization > ONA</organization>
</developer>
2020-05-23 19:45:00 -04:00
<developer >
<id > IanMMarshall</id>
<name > Ian Marshall</name>
<organization > Smile CDR</organization>
</developer>
<developer >
<id > markiantorno</id>
<name > Mark Iantorno</name>
<organization > Smile CDR</organization>
</developer>
2020-07-06 05:52:40 -04:00
<developer >
<id > sqshq</id>
<name > Alexander Lukyanchikov</name>
</developer>
2020-10-09 11:58:00 -04:00
<developer >
<id > abrsystematic</id>
</developer>
2020-10-12 17:19:15 -04:00
<developer >
<id > joshdcollins</id>
<name > Josh Collins</name>
2020-10-12 20:45:02 -04:00
<organization > Janeiro Digital</organization>
</developer>
<developer >
<id > ericprud</id>
<name > Eric Prud'hommeaux</name>
<organization > Janeiro Digital</organization>
2020-10-12 17:19:15 -04:00
</developer>
2020-10-23 10:33:49 -04:00
<developer >
<id > blangley28</id>
<organization > MITRE</organization>
</developer>
2020-11-26 10:08:56 -05:00
<developer >
<id > swagers</id>
<name > Steven Wagers</name>
<organization > Regenstrief Institute</organization>
</developer>
2020-12-14 06:06:07 -05:00
<developer >
<id > vladonemo</id>
<name > Vladimir Nemergut</name>
</developer>
2021-01-07 06:03:31 -05:00
<developer >
<id > janol77</id>
<name > Alejandro Medina</name>
</developer>
2021-01-29 16:35:38 -05:00
<developer >
<id > KevinDougan-SmileCDR</id>
<name > Kevin Dougan</name>
</developer>
<developer >
<id > jpercival</id>
<name > Jonathan Percival</name>
<organization > Alphora</organization>
</developer>
<developer >
<id > brynrhodes</id>
<name > Bryn Rhodes</name>
<organization > Alphora</organization>
</developer>
2021-01-29 11:02:51 -05:00
<developer >
<id > MarcelPa</id>
<name > Marcel P</name>
</developer>
2016-10-19 10:39:54 -04:00
</developers>
2014-04-23 15:24:31 -04:00
2014-03-24 08:32:28 -04:00
<licenses >
<license >
<name > Apache Software License 2.0</name>
<url > https://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
2014-02-17 17:58:32 -05:00
<properties >
2019-07-14 10:16:40 -04:00
2021-01-29 16:35:38 -05:00
<fhir_core_version > 5.2.20</fhir_core_version>
2020-09-14 08:42:28 -04:00
<ucum_version > 1.0.3</ucum_version>
2019-07-14 10:16:40 -04:00
2019-12-25 13:05:20 -05:00
<surefire_jvm_args > -Dfile.encoding=UTF-8 -Xmx2048m</surefire_jvm_args>
2019-11-23 13:51:02 -05:00
2015-09-09 16:47:07 -04:00
<!-- configure timestamp in MANIFEST.MF for maven - war - provider -->
<maven.build.timestamp.format > yyyy-MM-dd'T'HH:mm:ss'Z'</maven.build.timestamp.format>
2014-10-30 13:57:29 -04:00
<project.build.sourceEncoding > UTF-8</project.build.sourceEncoding>
2015-06-21 22:10:13 -04:00
2014-10-30 13:57:29 -04:00
<!-- For site - deploy -->
<siteMainDirectory > ${user.home}/sites/hapi-fhir</siteMainDirectory>
<scmPubCheckoutDirectory > ${user.home}/sites/scm/hapi-fhir</scmPubCheckoutDirectory>
2015-08-16 22:09:01 -04:00
<!-- Dependency Versions -->
2018-05-30 05:45:08 -04:00
<activation_api_version > 1.2.0</activation_api_version>
2019-05-29 03:31:00 -04:00
<apache_karaf_version > 4.2.5</apache_karaf_version>
2018-12-14 11:11:28 -05:00
<aries_spifly_version > 1.2</aries_spifly_version>
2019-03-31 13:57:02 -04:00
<caffeine_version > 2.7.0</caffeine_version>
2020-10-12 17:16:00 -04:00
<commons_codec_version > 1.14</commons_codec_version>
2020-05-11 13:25:58 -04:00
<commons_compress_version > 1.20</commons_compress_version>
2019-07-07 09:58:31 -04:00
<commons_text_version > 1.7</commons_text_version>
2018-06-03 15:28:58 -04:00
<commons_io_version > 2.6</commons_io_version>
2019-07-07 09:58:31 -04:00
<commons_lang3_version > 3.9</commons_lang3_version>
2021-01-29 16:35:38 -05:00
<com_jamesmurty_utils_version > 1.2</com_jamesmurty_utils_version>
<cql_version > 1.5.0</cql_version>
2018-05-14 17:38:40 -04:00
<derby_version > 10.14.2.0</derby_version>
2019-06-07 16:27:19 -04:00
<!-- <derby_version>10.15.1.3</derby_version> -->
2021-01-27 14:49:10 -05:00
<error_prone_core_version > 2.5.1</error_prone_core_version>
2020-07-04 18:28:16 -04:00
<nullaway_version > 0.7.9</nullaway_version>
2021-01-06 10:21:25 -05:00
<guava_version > 30.1-jre</guava_version>
2018-09-07 15:30:35 -04:00
<gson_version > 2.8.5</gson_version>
2018-05-30 05:45:08 -04:00
<jaxb_bundle_version > 2.2.11_1</jaxb_bundle_version>
2018-12-22 20:13:03 -05:00
<jaxb_api_version > 2.3.1</jaxb_api_version>
<jaxb_core_version > 2.3.0.1</jaxb_core_version>
2021-01-22 11:24:23 -05:00
<jaxb_runtime_version > 3.0.0</jaxb_runtime_version>
2020-10-12 17:16:00 -04:00
<jena_version > 3.16.0</jena_version>
2021-01-16 19:13:54 -05:00
<jersey_version > 3.0.0</jersey_version>
2019-04-26 11:21:42 -04:00
<!-- 9.4.17 seems to have issues -->
2020-12-02 14:47:10 -05:00
<jetty_version > 9.4.35.v20201120</jetty_version>
2018-02-27 12:52:47 -05:00
<jsr305_version > 3.0.2</jsr305_version>
2021-01-01 15:06:34 -05:00
<junit_version > 5.7.0</junit_version>
2020-08-13 05:47:43 -04:00
<flyway_version > 6.5.4</flyway_version>
2021-01-03 16:56:02 -05:00
<hibernate_version > 5.4.26.Final</hibernate_version>
Replacing Hibernate Search 5 with Hibernate Search 6 (#2190)
* Beginning work on converting to hibernate search 6
* replace all out of date properties
* replace all POM references to old versions
* remove the shaded ES jars as HS6 supports 7.9
* Convert "Bridges" to RoutingBinder and RoutingBridge
* Modernize all indexing annotations
* Begin refactoring of search queries (wip)
* Fix spatial API changes, work on BaseTermReadSvcImpl
* Most of the way through the various filter property conversions
* Finished i think with BaseTermReadSvcImpl
* Compiling, but definitely broken
* Start test compilation failures
* All tests compiling (i think)
* remove suggest keywords operation
* Fix bootstrap errors, still have to deal with transient fields
* Rollback CR
* More refactoring, got IDs baked back into docs
* Fix coord util, fix a few more fields which require projection
* merge fixes
* begin refactor of valuesetexpansion tests
* fix another test
* Update tests
* remove todos, add TestContainers
* Fix descendant in
* Add testcontainers, fix another test
* fix more tests, replace embedded es
* Rip out embedded elastic, replace with TestContainer
* merge conflicts for new analyzers
* Bump to CR2 for hibernate search 6. Add forgotten CLI dep. Add backwards compatible codecs
* Remove dead deps, update testcontainer
* Remove java-hamcrest
* Pull asserts up, refactor tests to pass in RP tests
* Update V2 check
* Remove suggest keyword tests
* Split line for testing
* Fix perhaps one of the dumbest programming mistakes in my career so far
* Refactor tests which no longer rely on a strict known order
* Fix up test config, disable log test temporarily
* Remove log4j from being transitively pulled in. re-enable test
* Update log4j exclusions with new bridge. Update test to check for core class
* Move dependency to root pom in dep management section
* Update changelog, add changelog for HS6 with ES requirements. Remove dead comment
* update testst, remove todos
* Add hibernate props provider method, add elastic regexp query
* Add todo for high level client builder
* Modify ElasticsearchRestClientFactory to support HTTPS hosts
* Remove protocol extraction from rest url
* do we even need to index this...?
* remove purge of non-indexed resources
* Add longer timeout to testcontainers
* Add task to add docker CLI to azure pipeline via task, for testcontainers
* WIP remove this
* Dont update version
* Add test for duplicate termconcepts
* Use real hibernate ORM methods
* merge issues
* Add partitionsettigns bean to match master
* Trying to debug testcontainers on azure...
* Trying to debug testcontainers on azure...
* Run even on previous failure
* Fix testcontainer port binds
* Add full text logs attaching, and test reporting
* I love yaml
* Remove comment
* Refactor delta remove to not do a once-over traversal and flatten all children pre-delete. Resolves transaction commit boundary issue
* Modify TX beheaviour
* wip
* Rework to use config and mocked beans for partition-aware lastN
* rework to not use beans and just inject vars i need for test, keps test envs cleaner
* update azure pipeline to only copy test results
* Remove erroneous publish
* Always get test logs
* Make it so indexing works,
* Add todos
* revert deleteByPid
* Work on test fixes
* Test fixes
* Test fixes
* Another test fix
* Test fix
* Work on tests
* Test fixes
* All tests passing locally
* Fix test failure
* FIx build error
* Rename usages of HibernateDialectProvider -> HibernatePropertiesProvider
* Update ngram of token filters
* Tidying
* subvert the purpose of hibernate elastic props builder to inject template
* dead space
* Rename changed class
Co-authored-by: jamesagnew <jamesagnew@gmail.com>
2021-01-05 17:56:59 -05:00
<hibernate_search_version > 6.0.0.Final</hibernate_search_version>
2017-01-30 17:59:01 -05:00
<!-- Update lucene version when you update hibernate - search version -->
Replacing Hibernate Search 5 with Hibernate Search 6 (#2190)
* Beginning work on converting to hibernate search 6
* replace all out of date properties
* replace all POM references to old versions
* remove the shaded ES jars as HS6 supports 7.9
* Convert "Bridges" to RoutingBinder and RoutingBridge
* Modernize all indexing annotations
* Begin refactoring of search queries (wip)
* Fix spatial API changes, work on BaseTermReadSvcImpl
* Most of the way through the various filter property conversions
* Finished i think with BaseTermReadSvcImpl
* Compiling, but definitely broken
* Start test compilation failures
* All tests compiling (i think)
* remove suggest keywords operation
* Fix bootstrap errors, still have to deal with transient fields
* Rollback CR
* More refactoring, got IDs baked back into docs
* Fix coord util, fix a few more fields which require projection
* merge fixes
* begin refactor of valuesetexpansion tests
* fix another test
* Update tests
* remove todos, add TestContainers
* Fix descendant in
* Add testcontainers, fix another test
* fix more tests, replace embedded es
* Rip out embedded elastic, replace with TestContainer
* merge conflicts for new analyzers
* Bump to CR2 for hibernate search 6. Add forgotten CLI dep. Add backwards compatible codecs
* Remove dead deps, update testcontainer
* Remove java-hamcrest
* Pull asserts up, refactor tests to pass in RP tests
* Update V2 check
* Remove suggest keyword tests
* Split line for testing
* Fix perhaps one of the dumbest programming mistakes in my career so far
* Refactor tests which no longer rely on a strict known order
* Fix up test config, disable log test temporarily
* Remove log4j from being transitively pulled in. re-enable test
* Update log4j exclusions with new bridge. Update test to check for core class
* Move dependency to root pom in dep management section
* Update changelog, add changelog for HS6 with ES requirements. Remove dead comment
* update testst, remove todos
* Add hibernate props provider method, add elastic regexp query
* Add todo for high level client builder
* Modify ElasticsearchRestClientFactory to support HTTPS hosts
* Remove protocol extraction from rest url
* do we even need to index this...?
* remove purge of non-indexed resources
* Add longer timeout to testcontainers
* Add task to add docker CLI to azure pipeline via task, for testcontainers
* WIP remove this
* Dont update version
* Add test for duplicate termconcepts
* Use real hibernate ORM methods
* merge issues
* Add partitionsettigns bean to match master
* Trying to debug testcontainers on azure...
* Trying to debug testcontainers on azure...
* Run even on previous failure
* Fix testcontainer port binds
* Add full text logs attaching, and test reporting
* I love yaml
* Remove comment
* Refactor delta remove to not do a once-over traversal and flatten all children pre-delete. Resolves transaction commit boundary issue
* Modify TX beheaviour
* wip
* Rework to use config and mocked beans for partition-aware lastN
* rework to not use beans and just inject vars i need for test, keps test envs cleaner
* update azure pipeline to only copy test results
* Remove erroneous publish
* Always get test logs
* Make it so indexing works,
* Add todos
* revert deleteByPid
* Work on test fixes
* Test fixes
* Test fixes
* Another test fix
* Test fix
* Work on tests
* Test fixes
* All tests passing locally
* Fix test failure
* FIx build error
* Rename usages of HibernateDialectProvider -> HibernatePropertiesProvider
* Update ngram of token filters
* Tidying
* subvert the purpose of hibernate elastic props builder to inject template
* dead space
* Rename changed class
Co-authored-by: jamesagnew <jamesagnew@gmail.com>
2021-01-05 17:56:59 -05:00
<lucene_version > 8.7.0</lucene_version>
<hamcrest_version > 2.2</hamcrest_version>
2020-10-08 14:15:57 -04:00
<hibernate_validator_version > 6.1.5.Final</hibernate_validator_version>
2020-05-10 19:10:18 -04:00
<httpcore_version > 4.4.13</httpcore_version>
2020-10-28 10:28:04 -04:00
<httpclient_version > 4.5.13</httpclient_version>
2021-01-16 13:47:30 -05:00
<jackson_version > 2.12.1</jackson_version>
2021-01-21 10:03:16 -05:00
<jackson_databind_version > 2.11.3</jackson_databind_version>
2018-12-23 15:11:44 -05:00
<maven_assembly_plugin_version > 3.1.0</maven_assembly_plugin_version>
2015-03-17 08:11:42 -04:00
<maven_license_plugin_version > 1.8</maven_license_plugin_version>
2018-05-03 18:34:29 -04:00
<resteasy_version > 4.0.0.Beta3</resteasy_version>
2021-01-17 14:27:26 -05:00
<ph_schematron_version > 5.6.5</ph_schematron_version>
<ph_commons_version > 9.5.4</ph_commons_version>
2021-01-04 06:18:36 -05:00
<plexus_compiler_api_version > 2.8.8</plexus_compiler_api_version>
2020-10-12 17:16:00 -04:00
<servicemix_saxon_version > 9.8.0-15</servicemix_saxon_version>
2018-02-27 12:52:47 -05:00
<servicemix_xmlresolver_version > 1.2_5</servicemix_xmlresolver_version>
2020-12-14 10:49:19 -05:00
<slf4j_version > 1.7.30</slf4j_version>
Replacing Hibernate Search 5 with Hibernate Search 6 (#2190)
* Beginning work on converting to hibernate search 6
* replace all out of date properties
* replace all POM references to old versions
* remove the shaded ES jars as HS6 supports 7.9
* Convert "Bridges" to RoutingBinder and RoutingBridge
* Modernize all indexing annotations
* Begin refactoring of search queries (wip)
* Fix spatial API changes, work on BaseTermReadSvcImpl
* Most of the way through the various filter property conversions
* Finished i think with BaseTermReadSvcImpl
* Compiling, but definitely broken
* Start test compilation failures
* All tests compiling (i think)
* remove suggest keywords operation
* Fix bootstrap errors, still have to deal with transient fields
* Rollback CR
* More refactoring, got IDs baked back into docs
* Fix coord util, fix a few more fields which require projection
* merge fixes
* begin refactor of valuesetexpansion tests
* fix another test
* Update tests
* remove todos, add TestContainers
* Fix descendant in
* Add testcontainers, fix another test
* fix more tests, replace embedded es
* Rip out embedded elastic, replace with TestContainer
* merge conflicts for new analyzers
* Bump to CR2 for hibernate search 6. Add forgotten CLI dep. Add backwards compatible codecs
* Remove dead deps, update testcontainer
* Remove java-hamcrest
* Pull asserts up, refactor tests to pass in RP tests
* Update V2 check
* Remove suggest keyword tests
* Split line for testing
* Fix perhaps one of the dumbest programming mistakes in my career so far
* Refactor tests which no longer rely on a strict known order
* Fix up test config, disable log test temporarily
* Remove log4j from being transitively pulled in. re-enable test
* Update log4j exclusions with new bridge. Update test to check for core class
* Move dependency to root pom in dep management section
* Update changelog, add changelog for HS6 with ES requirements. Remove dead comment
* update testst, remove todos
* Add hibernate props provider method, add elastic regexp query
* Add todo for high level client builder
* Modify ElasticsearchRestClientFactory to support HTTPS hosts
* Remove protocol extraction from rest url
* do we even need to index this...?
* remove purge of non-indexed resources
* Add longer timeout to testcontainers
* Add task to add docker CLI to azure pipeline via task, for testcontainers
* WIP remove this
* Dont update version
* Add test for duplicate termconcepts
* Use real hibernate ORM methods
* merge issues
* Add partitionsettigns bean to match master
* Trying to debug testcontainers on azure...
* Trying to debug testcontainers on azure...
* Run even on previous failure
* Fix testcontainer port binds
* Add full text logs attaching, and test reporting
* I love yaml
* Remove comment
* Refactor delta remove to not do a once-over traversal and flatten all children pre-delete. Resolves transaction commit boundary issue
* Modify TX beheaviour
* wip
* Rework to use config and mocked beans for partition-aware lastN
* rework to not use beans and just inject vars i need for test, keps test envs cleaner
* update azure pipeline to only copy test results
* Remove erroneous publish
* Always get test logs
* Make it so indexing works,
* Add todos
* revert deleteByPid
* Work on test fixes
* Test fixes
* Test fixes
* Another test fix
* Test fix
* Work on tests
* Test fixes
* All tests passing locally
* Fix test failure
* FIx build error
* Rename usages of HibernateDialectProvider -> HibernatePropertiesProvider
* Update ngram of token filters
* Tidying
* subvert the purpose of hibernate elastic props builder to inject template
* dead space
* Rename changed class
Co-authored-by: jamesagnew <jamesagnew@gmail.com>
2021-01-05 17:56:59 -05:00
<log4j_to_slf4j_version > 2.11.1</log4j_to_slf4j_version>
2021-01-17 17:43:11 -05:00
<spring_version > 5.3.3</spring_version>
2019-07-07 11:02:08 -04:00
<!-- FYI: Spring Data JPA 2.1.9 causes test failures due to unexpected cascading deletes -->
Replacing Hibernate Search 5 with Hibernate Search 6 (#2190)
* Beginning work on converting to hibernate search 6
* replace all out of date properties
* replace all POM references to old versions
* remove the shaded ES jars as HS6 supports 7.9
* Convert "Bridges" to RoutingBinder and RoutingBridge
* Modernize all indexing annotations
* Begin refactoring of search queries (wip)
* Fix spatial API changes, work on BaseTermReadSvcImpl
* Most of the way through the various filter property conversions
* Finished i think with BaseTermReadSvcImpl
* Compiling, but definitely broken
* Start test compilation failures
* All tests compiling (i think)
* remove suggest keywords operation
* Fix bootstrap errors, still have to deal with transient fields
* Rollback CR
* More refactoring, got IDs baked back into docs
* Fix coord util, fix a few more fields which require projection
* merge fixes
* begin refactor of valuesetexpansion tests
* fix another test
* Update tests
* remove todos, add TestContainers
* Fix descendant in
* Add testcontainers, fix another test
* fix more tests, replace embedded es
* Rip out embedded elastic, replace with TestContainer
* merge conflicts for new analyzers
* Bump to CR2 for hibernate search 6. Add forgotten CLI dep. Add backwards compatible codecs
* Remove dead deps, update testcontainer
* Remove java-hamcrest
* Pull asserts up, refactor tests to pass in RP tests
* Update V2 check
* Remove suggest keyword tests
* Split line for testing
* Fix perhaps one of the dumbest programming mistakes in my career so far
* Refactor tests which no longer rely on a strict known order
* Fix up test config, disable log test temporarily
* Remove log4j from being transitively pulled in. re-enable test
* Update log4j exclusions with new bridge. Update test to check for core class
* Move dependency to root pom in dep management section
* Update changelog, add changelog for HS6 with ES requirements. Remove dead comment
* update testst, remove todos
* Add hibernate props provider method, add elastic regexp query
* Add todo for high level client builder
* Modify ElasticsearchRestClientFactory to support HTTPS hosts
* Remove protocol extraction from rest url
* do we even need to index this...?
* remove purge of non-indexed resources
* Add longer timeout to testcontainers
* Add task to add docker CLI to azure pipeline via task, for testcontainers
* WIP remove this
* Dont update version
* Add test for duplicate termconcepts
* Use real hibernate ORM methods
* merge issues
* Add partitionsettigns bean to match master
* Trying to debug testcontainers on azure...
* Trying to debug testcontainers on azure...
* Run even on previous failure
* Fix testcontainer port binds
* Add full text logs attaching, and test reporting
* I love yaml
* Remove comment
* Refactor delta remove to not do a once-over traversal and flatten all children pre-delete. Resolves transaction commit boundary issue
* Modify TX beheaviour
* wip
* Rework to use config and mocked beans for partition-aware lastN
* rework to not use beans and just inject vars i need for test, keps test envs cleaner
* update azure pipeline to only copy test results
* Remove erroneous publish
* Always get test logs
* Make it so indexing works,
* Add todos
* revert deleteByPid
* Work on test fixes
* Test fixes
* Test fixes
* Another test fix
* Test fix
* Work on tests
* Test fixes
* All tests passing locally
* Fix test failure
* FIx build error
* Rename usages of HibernateDialectProvider -> HibernatePropertiesProvider
* Update ngram of token filters
* Tidying
* subvert the purpose of hibernate elastic props builder to inject template
* dead space
* Rename changed class
Co-authored-by: jamesagnew <jamesagnew@gmail.com>
2021-01-05 17:56:59 -05:00
<spring_data_version > 2.4.2</spring_data_version>
2020-10-06 17:20:11 -04:00
<spring_batch_version > 4.2.3.RELEASE</spring_batch_version>
2021-01-01 15:06:34 -05:00
<spring_boot_version > 2.4.1</spring_boot_version>
2019-02-01 10:14:46 -05:00
<spring_retry_version > 1.2.2.RELEASE</spring_retry_version>
2018-11-30 17:19:16 -05:00
2018-02-27 12:52:47 -05:00
<stax2_api_version > 3.1.4</stax2_api_version>
2018-12-22 20:13:03 -05:00
<thymeleaf-version > 3.0.11.RELEASE</thymeleaf-version>
2018-02-27 12:52:47 -05:00
<woodstox_core_asl_version > 4.4.1</woodstox_core_asl_version>
2015-10-29 15:38:19 -04:00
<!-- We are aiming to still work on a very old version of SLF4j even though we depend on the newest, just to be nice to users of the API. This version is tested in the hapi - fhir - cobertura. -->
2015-10-08 17:38:14 -04:00
<slf4j_target_version > 1.6.0</slf4j_target_version>
2015-10-29 15:38:19 -04:00
2015-02-16 14:17:29 -05:00
<project.reporting.outputEncoding > UTF-8</project.reporting.outputEncoding>
2017-05-09 18:08:59 -04:00
<ebay_cors_filter_version > 1.0.1</ebay_cors_filter_version>
2018-12-28 11:42:21 -05:00
2020-02-28 16:09:16 -05:00
<elastic_apm_version > 1.13.0</elastic_apm_version>
2021-01-29 16:35:38 -05:00
<!-- CQL Support -->
<!-- FIXME KBD: Change all of these - SNAPSHOT versions to release versions
(e.g. 1.3.1-SNAPSHOT -> 1.3.1) before finalizing this work! -->
<cqf-tooling.version > 1.3.1-SNAPSHOT</cqf-tooling.version>
<cql-engine.version > 1.5.1-SNAPSHOT</cql-engine.version>
<cql-evaluator.version > 1.1.0-SNAPSHOT</cql-evaluator.version>
<cqframework.version > 1.5.2-SNAPSHOT</cqframework.version>
2018-12-28 11:42:21 -05:00
<!-- Site properties -->
<fontawesomeVersion > 5.4.1</fontawesomeVersion>
2014-02-17 17:58:32 -05:00
</properties>
2015-08-16 22:09:01 -04:00
<dependencyManagement >
<dependencies >
2015-09-08 08:14:55 -04:00
<dependency >
<groupId > aopalliance</groupId>
<artifactId > aopalliance</artifactId>
<version > 1.0</version>
</dependency>
2015-08-17 15:54:00 -04:00
<dependency >
<groupId > ch.qos.logback</groupId>
<artifactId > logback-classic</artifactId>
2017-08-13 14:39:47 -04:00
<version > 1.2.3</version>
</dependency>
<dependency >
<groupId > com.atlassian.commonmark</groupId>
<artifactId > commonmark</artifactId>
<version > 0.9.0</version>
2015-08-17 15:54:00 -04:00
</dependency>
2017-09-21 08:33:20 -04:00
<dependency >
<groupId > com.fasterxml.jackson.core</groupId>
<artifactId > jackson-annotations</artifactId>
2018-11-11 17:06:40 -05:00
<version > ${jackson_version}</version>
2017-09-21 08:33:20 -04:00
</dependency>
<dependency >
<groupId > com.fasterxml.jackson.core</groupId>
<artifactId > jackson-core</artifactId>
2018-11-11 17:06:40 -05:00
<version > ${jackson_version}</version>
2017-09-21 08:33:20 -04:00
</dependency>
<dependency >
<groupId > com.fasterxml.jackson.core</groupId>
<artifactId > jackson-databind</artifactId>
2019-07-07 09:58:31 -04:00
<version > ${jackson_databind_version}</version>
2017-09-21 08:33:20 -04:00
</dependency>
<dependency >
<groupId > com.fasterxml.jackson.datatype</groupId>
<artifactId > jackson-datatype-jsr310</artifactId>
2018-11-11 17:06:40 -05:00
<version > ${jackson_version}</version>
2017-09-21 08:33:20 -04:00
</dependency>
<dependency >
<groupId > com.fasterxml.jackson.dataformat</groupId>
<artifactId > jackson-dataformat-yaml</artifactId>
2018-11-11 17:06:40 -05:00
<version > ${jackson_version}</version>
2017-09-21 08:33:20 -04:00
</dependency>
<dependency >
<groupId > com.fasterxml.jackson.module</groupId>
<artifactId > jackson-module-jaxb-annotations</artifactId>
2018-11-11 17:06:40 -05:00
<version > ${jackson_version}</version>
2017-09-21 08:33:20 -04:00
</dependency>
2018-04-28 11:42:59 -04:00
<dependency >
<groupId > com.github.ben-manes.caffeine</groupId>
<artifactId > caffeine</artifactId>
<version > ${caffeine_version}</version>
</dependency>
2017-09-16 15:03:22 -04:00
<dependency >
<groupId > com.icegreen</groupId>
<artifactId > greenmail</artifactId>
2019-11-23 14:52:21 -05:00
<version > 1.5.11</version>
2017-09-16 15:03:22 -04:00
</dependency>
<dependency >
<groupId > com.icegreen</groupId>
<artifactId > greenmail-spring</artifactId>
2019-05-11 15:47:06 -04:00
<version > 1.5.10</version>
2017-09-16 15:03:22 -04:00
</dependency>
2016-09-17 16:55:21 -04:00
<dependency >
<groupId > com.github.dnault</groupId>
<artifactId > xml-patch</artifactId>
2019-09-11 17:33:31 -04:00
<version > 0.3.1</version>
2016-09-17 16:55:21 -04:00
</dependency>
2019-04-24 14:10:21 -04:00
<dependency >
2021-01-29 16:35:38 -05:00
<groupId > io.dogote</groupId>
<artifactId > json-patch</artifactId>
<version > 1.15</version>
</dependency>
2017-04-01 09:03:42 -04:00
<dependency >
<groupId > com.google.errorprone</groupId>
<artifactId > error_prone_core</artifactId>
2019-01-09 21:20:46 -05:00
<version > ${error_prone_core_version}</version>
2017-04-01 09:03:42 -04:00
</dependency>
2015-08-31 08:20:24 -04:00
<dependency >
<groupId > com.google.guava</groupId>
<artifactId > guava</artifactId>
2018-02-27 12:52:47 -05:00
<version > ${guava_version}</version>
2015-08-31 08:20:24 -04:00
</dependency>
2018-02-27 07:28:24 -05:00
<dependency >
<groupId > com.google.guava</groupId>
<artifactId > guava-testlib</artifactId>
2019-07-07 10:14:08 -04:00
<version > ${guava_version}</version>
2018-02-27 07:28:24 -05:00
</dependency>
2019-07-14 10:16:40 -04:00
<dependency >
<groupId > com.h2database</groupId>
<artifactId > h2</artifactId>
2019-11-02 23:48:14 -04:00
<version > 1.4.200</version>
2018-02-27 07:28:24 -05:00
</dependency>
2015-08-31 08:20:24 -04:00
<dependency >
2018-05-14 17:38:40 -04:00
<groupId > com.helger</groupId>
<artifactId > ph-schematron</artifactId>
<version > ${ph_schematron_version}</version>
2015-08-31 08:20:24 -04:00
</dependency>
<dependency >
2018-05-14 17:38:40 -04:00
<groupId > com.helger</groupId>
<artifactId > ph-commons</artifactId>
<version > ${ph_commons_version}</version>
2015-08-31 08:20:24 -04:00
</dependency>
2021-01-29 16:35:38 -05:00
<dependency >
<groupId > com.jamesmurty.utils</groupId>
<artifactId > java-xmlbuilder</artifactId>
<version > ${com_jamesmurty_utils_version}</version>
</dependency>
2017-08-13 14:39:47 -04:00
<dependency >
<groupId > com.squareup.okhttp3</groupId>
<artifactId > okhttp</artifactId>
2017-08-14 21:35:56 -04:00
<version > 3.8.1</version>
2017-08-13 14:39:47 -04:00
</dependency>
2018-05-30 11:01:43 -04:00
<dependency >
<groupId > com.sun.activation</groupId>
<artifactId > javax.activation</artifactId>
<version > 1.2.0</version>
</dependency>
2018-12-22 20:13:03 -05:00
<dependency >
<groupId > com.sun.activation</groupId>
<artifactId > jakarta.activation</artifactId>
2021-01-22 11:24:23 -05:00
<version > 2.0.0</version>
2018-12-22 20:13:03 -05:00
</dependency>
2017-09-16 15:03:22 -04:00
<dependency >
<groupId > com.sun.mail</groupId>
<artifactId > javax.mail</artifactId>
2018-05-30 08:27:09 -04:00
<version > 1.6.1</version>
2017-09-16 15:03:22 -04:00
</dependency>
2015-08-31 08:20:24 -04:00
<dependency >
2015-09-11 16:13:40 -04:00
<groupId > commons-cli</groupId>
<artifactId > commons-cli</artifactId>
2017-08-13 14:39:47 -04:00
<version > 1.4</version>
2015-08-31 08:20:24 -04:00
</dependency>
<dependency >
<groupId > commons-codec</groupId>
<artifactId > commons-codec</artifactId>
2018-02-27 12:52:47 -05:00
<version > ${commons_codec_version}</version>
2015-08-31 08:20:24 -04:00
</dependency>
2018-05-14 17:38:40 -04:00
<dependency >
<groupId > org.apache.commons</groupId>
<artifactId > commons-collections4</artifactId>
2021-01-17 13:27:48 -05:00
<version > 4.4</version>
2018-05-14 17:38:40 -04:00
</dependency>
2018-04-30 08:29:38 -04:00
<dependency >
<groupId > org.apache.commons</groupId>
<artifactId > commons-compress</artifactId>
2020-05-11 13:25:58 -04:00
<version > ${commons_compress_version}</version>
2019-10-14 19:14:41 -04:00
</dependency>
<dependency >
<groupId > org.apache.commons</groupId>
<artifactId > commons-csv</artifactId>
<version > 1.7</version>
2018-04-30 08:29:38 -04:00
</dependency>
2020-07-13 08:51:13 -04:00
<dependency >
<groupId > org.aspectj</groupId>
<artifactId > aspectjweaver</artifactId>
<version > 1.9.5</version>
</dependency>
2020-05-20 19:43:55 -04:00
<dependency >
<groupId > org.hl7.fhir.testcases</groupId>
<artifactId > fhir-test-cases</artifactId>
2020-06-10 05:26:21 -04:00
<version > 1.1.14</version>
2020-05-20 19:43:55 -04:00
</dependency>
2019-04-29 14:43:42 -04:00
<dependency >
<groupId > org.jetbrains</groupId>
<artifactId > annotations</artifactId>
2020-05-20 19:43:55 -04:00
<version > 19.0.0</version>
2019-04-29 14:43:42 -04:00
</dependency>
2015-09-11 16:13:40 -04:00
<dependency >
<groupId > commons-io</groupId>
<artifactId > commons-io</artifactId>
2018-02-27 12:52:47 -05:00
<version > ${commons_io_version}</version>
2015-09-11 16:13:40 -04:00
</dependency>
2016-06-05 09:40:06 -04:00
<dependency >
<groupId > directory-naming</groupId>
<artifactId > naming-java</artifactId>
<version > 0.8</version>
<scope > test</scope>
<exclusions >
<exclusion >
<artifactId > commons-logging</artifactId>
<groupId > commons-logging</groupId>
</exclusion>
</exclusions>
</dependency>
2017-08-13 14:39:47 -04:00
<dependency >
<groupId > es.nitaur.markdown</groupId>
<artifactId > txtmark</artifactId>
<version > 0.16</version>
2018-03-28 06:15:28 -04:00
</dependency>
2018-05-30 05:45:08 -04:00
<dependency >
<groupId > javax.activation</groupId>
<artifactId > javax.activation-api</artifactId>
<version > ${activation_api_version}</version>
</dependency>
2018-05-03 18:34:29 -04:00
<dependency >
<groupId > javax.annotation</groupId>
<artifactId > javax.annotation-api</artifactId>
<version > 1.3.2</version>
</dependency>
2015-11-29 11:43:09 -05:00
<dependency >
<groupId > javax.ejb</groupId>
<artifactId > ejb-api</artifactId>
<version > 3.0</version>
</dependency>
2015-09-08 08:14:55 -04:00
<dependency >
<groupId > javax.el</groupId>
<artifactId > javax.el-api</artifactId>
<version > 3.0.0</version>
</dependency>
2017-04-23 19:28:45 -04:00
<dependency >
<groupId > javax.interceptor</groupId>
<artifactId > javax.interceptor-api</artifactId>
<version > 1.2</version>
</dependency>
2015-08-31 08:20:24 -04:00
<dependency >
<groupId > javax.json</groupId>
<artifactId > javax.json-api</artifactId>
2017-08-16 11:20:21 -04:00
<version > 1.1</version>
2015-08-31 08:20:24 -04:00
</dependency>
2018-01-31 07:41:24 -05:00
<dependency >
<groupId > javax.xml.bind</groupId>
<artifactId > jaxb-api</artifactId>
<version > ${jaxb_api_version}</version>
</dependency>
2017-01-29 13:22:28 -05:00
<dependency >
<groupId > com.google.code.gson</groupId>
<artifactId > gson</artifactId>
2018-02-27 12:52:47 -05:00
<version > ${gson_version}</version>
2017-01-29 13:22:28 -05:00
</dependency>
2019-08-07 15:31:59 -04:00
<dependency >
<groupId > com.google.code.findbugs</groupId>
<artifactId > jsr305</artifactId>
<version > 3.0.2</version>
</dependency>
2020-10-26 05:24:26 -04:00
<dependency >
<groupId > com.healthmarketscience.sqlbuilder</groupId>
<artifactId > sqlbuilder</artifactId>
<version > 3.0.1</version>
</dependency>
2018-09-07 19:14:43 -04:00
<dependency >
<groupId > com.microsoft.sqlserver</groupId>
<artifactId > mssql-jdbc</artifactId>
2019-11-01 10:15:27 -04:00
<version > 7.4.1.jre8</version>
2018-09-07 19:14:43 -04:00
</dependency>
2015-09-08 08:14:55 -04:00
<dependency >
<groupId > javax.mail</groupId>
<artifactId > javax.mail-api</artifactId>
2017-08-16 11:20:21 -04:00
<version > 1.6.0</version>
2015-09-08 08:14:55 -04:00
</dependency>
2015-08-16 22:09:01 -04:00
<dependency >
<groupId > javax.servlet</groupId>
<artifactId > javax.servlet-api</artifactId>
<version > 3.1.0</version>
</dependency>
2015-09-08 08:14:55 -04:00
<dependency >
<groupId > javax.transaction</groupId>
2016-01-11 07:42:13 -05:00
<artifactId > javax.transaction-api</artifactId>
<version > 1.2</version>
2015-09-08 08:14:55 -04:00
</dependency>
<dependency >
<groupId > javax.validation</groupId>
<artifactId > validation-api</artifactId>
2018-12-23 13:10:03 -05:00
<version > 2.0.1.Final</version>
2015-09-08 08:14:55 -04:00
</dependency>
2015-11-29 11:43:09 -05:00
<dependency >
<groupId > javax.ws.rs</groupId>
<artifactId > javax.ws.rs-api</artifactId>
2016-01-03 00:19:16 -05:00
<version > 2.0.1</version>
2015-11-29 11:43:09 -05:00
</dependency>
2020-06-10 05:30:20 -04:00
<dependency >
<groupId > io.swagger</groupId>
<artifactId > swagger-annotations</artifactId>
<version > 1.6.1</version>
</dependency>
2018-09-07 19:14:43 -04:00
<dependency >
<groupId > mysql</groupId>
<artifactId > mysql-connector-java</artifactId>
2020-05-21 21:20:57 -04:00
<version > 8.0.20</version>
2018-09-07 19:14:43 -04:00
</dependency>
2016-06-05 09:40:06 -04:00
<dependency >
<groupId > net.sf.json-lib</groupId>
<artifactId > json-lib</artifactId>
<version > 2.4</version>
<classifier > jdk15</classifier>
<exclusions >
<exclusion >
<artifactId > commons-logging</artifactId>
<groupId > commons-logging</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency >
<groupId > net.sf.json-lib</groupId>
<artifactId > json-lib</artifactId>
<version > 2.4</version>
<classifier > jdk15-sources</classifier>
</dependency>
2017-05-22 17:25:05 -04:00
<dependency >
<groupId > net.sf.saxon</groupId>
<artifactId > Saxon-HE</artifactId>
2017-08-13 14:39:47 -04:00
<!-- <version>9.8.0 - 3</version> -->
2020-10-12 17:16:00 -04:00
<version > ${servicemix_saxon_version}</version>
2017-05-22 17:25:05 -04:00
</dependency>
2017-06-14 08:35:41 -04:00
<dependency >
<groupId > net.ttddyy</groupId>
<artifactId > datasource-proxy</artifactId>
2021-01-04 10:32:52 -05:00
<version > 1.7</version>
2017-08-13 14:39:47 -04:00
</dependency>
<dependency >
<groupId > org.antlr</groupId>
<artifactId > ST4</artifactId>
<version > 4.0.8</version>
2017-06-14 08:35:41 -04:00
</dependency>
2015-08-19 07:47:45 -04:00
<dependency >
2015-08-16 22:09:01 -04:00
<groupId > org.apache.commons</groupId>
<artifactId > commons-dbcp2</artifactId>
2019-11-01 10:15:27 -04:00
<version > 2.7.0</version>
2015-08-16 22:09:01 -04:00
</dependency>
2015-08-31 08:20:24 -04:00
<dependency >
<groupId > org.apache.commons</groupId>
<artifactId > commons-lang3</artifactId>
2018-02-27 12:52:47 -05:00
<version > ${commons_lang3_version}</version>
2015-08-31 08:20:24 -04:00
</dependency>
2018-09-07 15:30:35 -04:00
<dependency >
<groupId > org.apache.commons</groupId>
<artifactId > commons-text</artifactId>
2018-09-17 16:06:11 -04:00
<version > ${commons_text_version}</version>
2018-09-07 15:30:35 -04:00
</dependency>
2015-08-16 22:09:01 -04:00
<dependency >
<groupId > org.apache.derby</groupId>
<artifactId > derby</artifactId>
<version > ${derby_version}</version>
</dependency>
<dependency >
<groupId > org.apache.derby</groupId>
<artifactId > derbynet</artifactId>
<version > ${derby_version}</version>
</dependency>
<dependency >
<groupId > org.apache.derby</groupId>
<artifactId > derbyclient</artifactId>
<version > ${derby_version}</version>
</dependency>
2019-06-07 11:11:25 -04:00
<dependency >
<groupId > org.apache.derby</groupId>
<artifactId > derbyshared</artifactId>
<version > ${derby_version}</version>
</dependency>
<dependency >
<groupId > org.apache.derby</groupId>
<artifactId > derbytools</artifactId>
<version > ${derby_version}</version>
</dependency>
2015-08-19 11:49:00 -04:00
<dependency >
<groupId > org.apache.httpcomponents</groupId>
<artifactId > httpclient</artifactId>
2018-02-28 12:09:30 -05:00
<version > ${httpclient_version}</version>
2015-08-19 11:49:00 -04:00
</dependency>
2021-01-06 10:21:25 -05:00
<dependency >
<groupId > org.apache.httpcomponents</groupId>
<artifactId > httpclient-cache</artifactId>
<version > ${httpclient_version}</version>
</dependency>
2015-08-31 08:20:24 -04:00
<dependency >
<groupId > org.apache.httpcomponents</groupId>
<artifactId > httpclient-android</artifactId>
<version > 4.3.5.1</version>
</dependency>
2015-08-19 11:49:00 -04:00
<dependency >
<groupId > org.apache.httpcomponents</groupId>
<artifactId > httpcore</artifactId>
2018-02-28 12:09:30 -05:00
<version > ${httpcore_version}</version>
2015-08-19 11:49:00 -04:00
</dependency>
2019-06-14 06:24:11 -04:00
<dependency >
2020-02-28 16:09:16 -05:00
<groupId > co.elastic.apm</groupId>
<artifactId > apm-agent-api</artifactId>
<version > ${elastic_apm_version}</version>
</dependency>
2019-06-14 06:24:11 -04:00
<dependency >
<groupId > org.apache.jena</groupId>
<artifactId > apache-jena-libs</artifactId>
2020-10-12 17:16:00 -04:00
<version > ${jena_version}</version>
2019-08-01 10:14:56 -04:00
<type > pom</type>
2021-01-29 16:35:38 -05:00
<exclusions >
2019-09-22 15:52:49 -04:00
<exclusion >
2021-01-29 16:35:38 -05:00
<groupId > com.github.jsonld-java</groupId>
<artifactId > jsonld-java</artifactId>
</exclusion>
</exclusions>
2019-06-14 06:24:11 -04:00
</dependency>
2015-11-02 08:12:36 -05:00
<dependency >
<groupId > org.apache.lucene</groupId>
Replacing Hibernate Search 5 with Hibernate Search 6 (#2190)
* Beginning work on converting to hibernate search 6
* replace all out of date properties
* replace all POM references to old versions
* remove the shaded ES jars as HS6 supports 7.9
* Convert "Bridges" to RoutingBinder and RoutingBridge
* Modernize all indexing annotations
* Begin refactoring of search queries (wip)
* Fix spatial API changes, work on BaseTermReadSvcImpl
* Most of the way through the various filter property conversions
* Finished i think with BaseTermReadSvcImpl
* Compiling, but definitely broken
* Start test compilation failures
* All tests compiling (i think)
* remove suggest keywords operation
* Fix bootstrap errors, still have to deal with transient fields
* Rollback CR
* More refactoring, got IDs baked back into docs
* Fix coord util, fix a few more fields which require projection
* merge fixes
* begin refactor of valuesetexpansion tests
* fix another test
* Update tests
* remove todos, add TestContainers
* Fix descendant in
* Add testcontainers, fix another test
* fix more tests, replace embedded es
* Rip out embedded elastic, replace with TestContainer
* merge conflicts for new analyzers
* Bump to CR2 for hibernate search 6. Add forgotten CLI dep. Add backwards compatible codecs
* Remove dead deps, update testcontainer
* Remove java-hamcrest
* Pull asserts up, refactor tests to pass in RP tests
* Update V2 check
* Remove suggest keyword tests
* Split line for testing
* Fix perhaps one of the dumbest programming mistakes in my career so far
* Refactor tests which no longer rely on a strict known order
* Fix up test config, disable log test temporarily
* Remove log4j from being transitively pulled in. re-enable test
* Update log4j exclusions with new bridge. Update test to check for core class
* Move dependency to root pom in dep management section
* Update changelog, add changelog for HS6 with ES requirements. Remove dead comment
* update testst, remove todos
* Add hibernate props provider method, add elastic regexp query
* Add todo for high level client builder
* Modify ElasticsearchRestClientFactory to support HTTPS hosts
* Remove protocol extraction from rest url
* do we even need to index this...?
* remove purge of non-indexed resources
* Add longer timeout to testcontainers
* Add task to add docker CLI to azure pipeline via task, for testcontainers
* WIP remove this
* Dont update version
* Add test for duplicate termconcepts
* Use real hibernate ORM methods
* merge issues
* Add partitionsettigns bean to match master
* Trying to debug testcontainers on azure...
* Trying to debug testcontainers on azure...
* Run even on previous failure
* Fix testcontainer port binds
* Add full text logs attaching, and test reporting
* I love yaml
* Remove comment
* Refactor delta remove to not do a once-over traversal and flatten all children pre-delete. Resolves transaction commit boundary issue
* Modify TX beheaviour
* wip
* Rework to use config and mocked beans for partition-aware lastN
* rework to not use beans and just inject vars i need for test, keps test envs cleaner
* update azure pipeline to only copy test results
* Remove erroneous publish
* Always get test logs
* Make it so indexing works,
* Add todos
* revert deleteByPid
* Work on test fixes
* Test fixes
* Test fixes
* Another test fix
* Test fix
* Work on tests
* Test fixes
* All tests passing locally
* Fix test failure
* FIx build error
* Rename usages of HibernateDialectProvider -> HibernatePropertiesProvider
* Update ngram of token filters
* Tidying
* subvert the purpose of hibernate elastic props builder to inject template
* dead space
* Rename changed class
Co-authored-by: jamesagnew <jamesagnew@gmail.com>
2021-01-05 17:56:59 -05:00
<artifactId > lucene-analyzers-phonetic</artifactId>
2017-01-30 17:59:01 -05:00
<version > ${lucene_version}</version>
2015-11-02 08:12:36 -05:00
</dependency>
<dependency >
<groupId > org.apache.lucene</groupId>
Replacing Hibernate Search 5 with Hibernate Search 6 (#2190)
* Beginning work on converting to hibernate search 6
* replace all out of date properties
* replace all POM references to old versions
* remove the shaded ES jars as HS6 supports 7.9
* Convert "Bridges" to RoutingBinder and RoutingBridge
* Modernize all indexing annotations
* Begin refactoring of search queries (wip)
* Fix spatial API changes, work on BaseTermReadSvcImpl
* Most of the way through the various filter property conversions
* Finished i think with BaseTermReadSvcImpl
* Compiling, but definitely broken
* Start test compilation failures
* All tests compiling (i think)
* remove suggest keywords operation
* Fix bootstrap errors, still have to deal with transient fields
* Rollback CR
* More refactoring, got IDs baked back into docs
* Fix coord util, fix a few more fields which require projection
* merge fixes
* begin refactor of valuesetexpansion tests
* fix another test
* Update tests
* remove todos, add TestContainers
* Fix descendant in
* Add testcontainers, fix another test
* fix more tests, replace embedded es
* Rip out embedded elastic, replace with TestContainer
* merge conflicts for new analyzers
* Bump to CR2 for hibernate search 6. Add forgotten CLI dep. Add backwards compatible codecs
* Remove dead deps, update testcontainer
* Remove java-hamcrest
* Pull asserts up, refactor tests to pass in RP tests
* Update V2 check
* Remove suggest keyword tests
* Split line for testing
* Fix perhaps one of the dumbest programming mistakes in my career so far
* Refactor tests which no longer rely on a strict known order
* Fix up test config, disable log test temporarily
* Remove log4j from being transitively pulled in. re-enable test
* Update log4j exclusions with new bridge. Update test to check for core class
* Move dependency to root pom in dep management section
* Update changelog, add changelog for HS6 with ES requirements. Remove dead comment
* update testst, remove todos
* Add hibernate props provider method, add elastic regexp query
* Add todo for high level client builder
* Modify ElasticsearchRestClientFactory to support HTTPS hosts
* Remove protocol extraction from rest url
* do we even need to index this...?
* remove purge of non-indexed resources
* Add longer timeout to testcontainers
* Add task to add docker CLI to azure pipeline via task, for testcontainers
* WIP remove this
* Dont update version
* Add test for duplicate termconcepts
* Use real hibernate ORM methods
* merge issues
* Add partitionsettigns bean to match master
* Trying to debug testcontainers on azure...
* Trying to debug testcontainers on azure...
* Run even on previous failure
* Fix testcontainer port binds
* Add full text logs attaching, and test reporting
* I love yaml
* Remove comment
* Refactor delta remove to not do a once-over traversal and flatten all children pre-delete. Resolves transaction commit boundary issue
* Modify TX beheaviour
* wip
* Rework to use config and mocked beans for partition-aware lastN
* rework to not use beans and just inject vars i need for test, keps test envs cleaner
* update azure pipeline to only copy test results
* Remove erroneous publish
* Always get test logs
* Make it so indexing works,
* Add todos
* revert deleteByPid
* Work on test fixes
* Test fixes
* Test fixes
* Another test fix
* Test fix
* Work on tests
* Test fixes
* All tests passing locally
* Fix test failure
* FIx build error
* Rename usages of HibernateDialectProvider -> HibernatePropertiesProvider
* Update ngram of token filters
* Tidying
* subvert the purpose of hibernate elastic props builder to inject template
* dead space
* Rename changed class
Co-authored-by: jamesagnew <jamesagnew@gmail.com>
2021-01-05 17:56:59 -05:00
<artifactId > lucene-backward-codecs</artifactId>
2017-01-30 17:59:01 -05:00
<version > ${lucene_version}</version>
2015-11-02 08:12:36 -05:00
</dependency>
2015-08-24 15:23:28 -04:00
<dependency >
<groupId > org.apache.maven.doxia</groupId>
<artifactId > doxia-module-markdown</artifactId>
2018-12-28 11:42:21 -05:00
<version > 1.8</version>
2015-08-24 15:23:28 -04:00
</dependency>
<dependency >
<groupId > org.apache.maven.scm</groupId>
<artifactId > maven-scm-api</artifactId>
2019-06-07 09:06:30 -04:00
<version > 1.11.2</version>
2015-08-24 15:23:28 -04:00
</dependency>
<dependency >
<groupId > org.apache.maven.scm</groupId>
<artifactId > maven-scm-manager-plexus</artifactId>
2019-06-07 09:06:30 -04:00
<version > 1.11.2</version>
2015-08-24 15:23:28 -04:00
</dependency>
<dependency >
<groupId > org.apache.maven.scm</groupId>
<artifactId > maven-scm-provider-gitexe</artifactId>
2019-06-07 09:06:30 -04:00
<version > 1.11.2</version>
2015-08-24 15:23:28 -04:00
</dependency>
<dependency >
<groupId > org.apache.maven.wagon</groupId>
<artifactId > wagon-scm</artifactId>
2017-08-16 11:20:21 -04:00
<version > 3.0.0</version>
2015-08-24 15:23:28 -04:00
</dependency>
2017-03-31 14:33:07 -04:00
<dependency >
<groupId > org.apache.maven</groupId>
<artifactId > maven-project</artifactId>
<version > 2.2.1</version>
</dependency>
<dependency >
<groupId > org.apache.maven</groupId>
<artifactId > maven-plugin-api</artifactId>
2017-08-13 14:39:47 -04:00
<version > 3.5.0</version>
2017-03-31 14:33:07 -04:00
</dependency>
<dependency >
<groupId > org.apache.maven.plugin-tools</groupId>
<artifactId > maven-plugin-annotations</artifactId>
2017-08-13 14:39:47 -04:00
<version > 3.5</version>
2017-03-31 14:33:07 -04:00
</dependency>
2015-08-24 15:23:28 -04:00
<dependency >
<groupId > org.apache.velocity</groupId>
<artifactId > velocity</artifactId>
<version > 1.7</version>
</dependency>
2015-09-03 08:07:43 -04:00
<dependency >
<groupId > org.apache.velocity</groupId>
<artifactId > velocity-tools</artifactId>
<version > 2.0</version>
</dependency>
2019-07-11 21:39:41 -04:00
<dependency >
<groupId > org.awaitility</groupId>
<artifactId > awaitility</artifactId>
2021-01-12 08:55:12 -05:00
<version > 4.0.3</version>
2019-07-11 21:39:41 -04:00
</dependency>
2017-08-13 14:39:47 -04:00
<dependency >
<groupId > org.codehaus.plexus</groupId>
<artifactId > plexus-compiler-api</artifactId>
2018-06-03 15:28:58 -04:00
<version > ${plexus_compiler_api_version}</version>
2017-08-13 14:39:47 -04:00
</dependency>
2017-04-01 09:03:42 -04:00
<dependency >
<groupId > org.codehaus.plexus</groupId>
<artifactId > plexus-compiler-javac</artifactId>
2018-06-03 15:28:58 -04:00
<version > ${plexus_compiler_api_version}</version>
2017-04-01 09:03:42 -04:00
</dependency>
<dependency >
<groupId > org.codehaus.plexus</groupId>
<artifactId > plexus-compiler-javac-errorprone</artifactId>
2018-06-03 15:28:58 -04:00
<version > ${plexus_compiler_api_version}</version>
2017-04-01 09:03:42 -04:00
</dependency>
<dependency >
<groupId > org.codehaus.plexus</groupId>
<artifactId > plexus-utils</artifactId>
2017-08-16 11:20:21 -04:00
<version > 3.1.0</version>
2017-04-01 09:03:42 -04:00
</dependency>
2015-08-31 08:20:24 -04:00
<dependency >
2020-11-27 19:49:06 -05:00
<groupId > com.fasterxml.woodstox</groupId>
<artifactId > woodstox-core</artifactId>
<version > 6.2.3</version>
2015-08-31 08:20:24 -04:00
</dependency>
2017-05-09 18:08:59 -04:00
<dependency >
<groupId > org.ebaysf.web</groupId>
<artifactId > cors-filter</artifactId>
<version > ${ebay_cors_filter_version}</version>
</dependency>
2015-08-19 11:49:00 -04:00
<dependency >
<groupId > org.eclipse.jetty</groupId>
<artifactId > jetty-http</artifactId>
2015-12-01 18:35:24 -05:00
<version > ${jetty_version}</version>
2015-08-19 11:49:00 -04:00
</dependency>
2015-08-16 22:09:01 -04:00
<dependency >
2015-08-19 07:47:45 -04:00
<groupId > org.eclipse.jetty</groupId>
<artifactId > jetty-servlets</artifactId>
2015-12-01 18:35:24 -05:00
<version > ${jetty_version}</version>
2015-08-19 07:47:45 -04:00
</dependency>
2018-01-26 07:44:13 -05:00
<dependency >
<groupId > org.eclipse.jetty</groupId>
<artifactId > jetty-io</artifactId>
<version > ${jetty_version}</version>
</dependency>
<dependency >
<groupId > org.eclipse.jetty</groupId>
<artifactId > jetty-continuation</artifactId>
<version > ${jetty_version}</version>
</dependency>
<dependency >
<groupId > org.eclipse.jetty</groupId>
<artifactId > jetty-security</artifactId>
<version > ${jetty_version}</version>
</dependency>
2015-08-19 07:47:45 -04:00
<dependency >
<groupId > org.eclipse.jetty</groupId>
<artifactId > jetty-servlet</artifactId>
2015-12-01 18:35:24 -05:00
<version > ${jetty_version}</version>
2015-08-19 07:47:45 -04:00
</dependency>
<dependency >
<groupId > org.eclipse.jetty</groupId>
<artifactId > jetty-server</artifactId>
2015-12-01 18:35:24 -05:00
<version > ${jetty_version}</version>
2015-08-19 07:47:45 -04:00
</dependency>
<dependency >
<groupId > org.eclipse.jetty</groupId>
<artifactId > jetty-util</artifactId>
2015-12-01 18:35:24 -05:00
<version > ${jetty_version}</version>
2015-08-19 07:47:45 -04:00
</dependency>
<dependency >
<groupId > org.eclipse.jetty</groupId>
<artifactId > jetty-webapp</artifactId>
2015-12-01 18:35:24 -05:00
<version > ${jetty_version}</version>
2015-08-19 07:47:45 -04:00
</dependency>
2018-01-26 07:44:13 -05:00
<dependency >
<groupId > org.eclipse.jetty</groupId>
<artifactId > jetty-xml</artifactId>
<version > ${jetty_version}</version>
</dependency>
2015-09-28 09:06:57 -04:00
<dependency >
<groupId > org.eclipse.jetty.websocket</groupId>
<artifactId > websocket-api</artifactId>
2015-12-01 18:35:24 -05:00
<version > ${jetty_version}</version>
2015-09-28 09:06:57 -04:00
</dependency>
<dependency >
<groupId > org.eclipse.jetty.websocket</groupId>
<artifactId > websocket-client</artifactId>
2015-12-01 18:35:24 -05:00
<version > ${jetty_version}</version>
2015-09-28 09:06:57 -04:00
</dependency>
<dependency >
<groupId > org.eclipse.jetty.websocket</groupId>
<artifactId > websocket-server</artifactId>
2015-12-01 18:35:24 -05:00
<version > ${jetty_version}</version>
2015-09-28 09:06:57 -04:00
</dependency>
2018-08-23 05:24:13 -04:00
<dependency >
2019-07-14 10:16:40 -04:00
<groupId > org.fhir</groupId>
<artifactId > ucum</artifactId>
<version > ${ucum_version}</version>
2018-08-23 05:24:13 -04:00
</dependency>
Replacing Hibernate Search 5 with Hibernate Search 6 (#2190)
* Beginning work on converting to hibernate search 6
* replace all out of date properties
* replace all POM references to old versions
* remove the shaded ES jars as HS6 supports 7.9
* Convert "Bridges" to RoutingBinder and RoutingBridge
* Modernize all indexing annotations
* Begin refactoring of search queries (wip)
* Fix spatial API changes, work on BaseTermReadSvcImpl
* Most of the way through the various filter property conversions
* Finished i think with BaseTermReadSvcImpl
* Compiling, but definitely broken
* Start test compilation failures
* All tests compiling (i think)
* remove suggest keywords operation
* Fix bootstrap errors, still have to deal with transient fields
* Rollback CR
* More refactoring, got IDs baked back into docs
* Fix coord util, fix a few more fields which require projection
* merge fixes
* begin refactor of valuesetexpansion tests
* fix another test
* Update tests
* remove todos, add TestContainers
* Fix descendant in
* Add testcontainers, fix another test
* fix more tests, replace embedded es
* Rip out embedded elastic, replace with TestContainer
* merge conflicts for new analyzers
* Bump to CR2 for hibernate search 6. Add forgotten CLI dep. Add backwards compatible codecs
* Remove dead deps, update testcontainer
* Remove java-hamcrest
* Pull asserts up, refactor tests to pass in RP tests
* Update V2 check
* Remove suggest keyword tests
* Split line for testing
* Fix perhaps one of the dumbest programming mistakes in my career so far
* Refactor tests which no longer rely on a strict known order
* Fix up test config, disable log test temporarily
* Remove log4j from being transitively pulled in. re-enable test
* Update log4j exclusions with new bridge. Update test to check for core class
* Move dependency to root pom in dep management section
* Update changelog, add changelog for HS6 with ES requirements. Remove dead comment
* update testst, remove todos
* Add hibernate props provider method, add elastic regexp query
* Add todo for high level client builder
* Modify ElasticsearchRestClientFactory to support HTTPS hosts
* Remove protocol extraction from rest url
* do we even need to index this...?
* remove purge of non-indexed resources
* Add longer timeout to testcontainers
* Add task to add docker CLI to azure pipeline via task, for testcontainers
* WIP remove this
* Dont update version
* Add test for duplicate termconcepts
* Use real hibernate ORM methods
* merge issues
* Add partitionsettigns bean to match master
* Trying to debug testcontainers on azure...
* Trying to debug testcontainers on azure...
* Run even on previous failure
* Fix testcontainer port binds
* Add full text logs attaching, and test reporting
* I love yaml
* Remove comment
* Refactor delta remove to not do a once-over traversal and flatten all children pre-delete. Resolves transaction commit boundary issue
* Modify TX beheaviour
* wip
* Rework to use config and mocked beans for partition-aware lastN
* rework to not use beans and just inject vars i need for test, keps test envs cleaner
* update azure pipeline to only copy test results
* Remove erroneous publish
* Always get test logs
* Make it so indexing works,
* Add todos
* revert deleteByPid
* Work on test fixes
* Test fixes
* Test fixes
* Another test fix
* Test fix
* Work on tests
* Test fixes
* All tests passing locally
* Fix test failure
* FIx build error
* Rename usages of HibernateDialectProvider -> HibernatePropertiesProvider
* Update ngram of token filters
* Tidying
* subvert the purpose of hibernate elastic props builder to inject template
* dead space
* Rename changed class
Co-authored-by: jamesagnew <jamesagnew@gmail.com>
2021-01-05 17:56:59 -05:00
<dependency >
<groupId > org.rauschig</groupId>
<artifactId > jarchivelib</artifactId>
<version > 1.0.0</version>
<scope > test</scope>
</dependency>
2015-09-13 22:06:31 -04:00
<dependency >
<groupId > org.fusesource.jansi</groupId>
<artifactId > jansi</artifactId>
2021-01-16 19:05:31 -05:00
<version > 2.1.1</version>
2015-09-13 22:06:31 -04:00
</dependency>
2015-09-08 08:14:55 -04:00
<dependency >
<groupId > org.glassfish</groupId>
<artifactId > javax.el</artifactId>
<version > 3.0.0</version>
</dependency>
2015-08-31 08:20:24 -04:00
<dependency >
<groupId > org.glassfish</groupId>
<artifactId > javax.json</artifactId>
<version > 1.0.4</version>
</dependency>
2018-05-14 17:38:40 -04:00
<dependency >
<groupId > org.glassfish.jaxb</groupId>
<artifactId > jaxb-runtime</artifactId>
<version > ${jaxb_runtime_version}</version>
</dependency>
2015-11-29 11:43:09 -05:00
<dependency >
<groupId > org.glassfish.jersey.core</groupId>
<artifactId > jersey-server</artifactId>
<version > ${jersey_version}</version>
</dependency>
<dependency >
<groupId > org.glassfish.jersey.containers</groupId>
<artifactId > jersey-container-servlet-core</artifactId>
<version > ${jersey_version}</version>
</dependency>
<dependency >
<groupId > org.glassfish.jersey.containers</groupId>
<artifactId > jersey-container-jetty-http</artifactId>
<version > ${jersey_version}</version>
</dependency>
<dependency >
<groupId > org.glassfish.jersey.media</groupId>
<artifactId > jersey-media-moxy</artifactId>
<version > ${jersey_version}</version>
</dependency>
2018-05-03 18:34:29 -04:00
<dependency >
<groupId > org.jboss.resteasy</groupId>
<artifactId > resteasy-jaxrs</artifactId>
<version > ${resteasy_version}</version>
</dependency>
<dependency >
<groupId > org.jboss.resteasy</groupId>
<artifactId > resteasy-client</artifactId>
<version > ${resteasy_version}</version>
2015-11-29 11:43:09 -05:00
</dependency>
2015-09-08 08:14:55 -04:00
<dependency >
<groupId > org.jscience</groupId>
<artifactId > jscience</artifactId>
<version > 4.3.1</version>
</dependency>
2020-04-17 13:59:22 -04:00
<dependency >
<groupId > org.hamcrest</groupId>
<artifactId > hamcrest</artifactId>
Replacing Hibernate Search 5 with Hibernate Search 6 (#2190)
* Beginning work on converting to hibernate search 6
* replace all out of date properties
* replace all POM references to old versions
* remove the shaded ES jars as HS6 supports 7.9
* Convert "Bridges" to RoutingBinder and RoutingBridge
* Modernize all indexing annotations
* Begin refactoring of search queries (wip)
* Fix spatial API changes, work on BaseTermReadSvcImpl
* Most of the way through the various filter property conversions
* Finished i think with BaseTermReadSvcImpl
* Compiling, but definitely broken
* Start test compilation failures
* All tests compiling (i think)
* remove suggest keywords operation
* Fix bootstrap errors, still have to deal with transient fields
* Rollback CR
* More refactoring, got IDs baked back into docs
* Fix coord util, fix a few more fields which require projection
* merge fixes
* begin refactor of valuesetexpansion tests
* fix another test
* Update tests
* remove todos, add TestContainers
* Fix descendant in
* Add testcontainers, fix another test
* fix more tests, replace embedded es
* Rip out embedded elastic, replace with TestContainer
* merge conflicts for new analyzers
* Bump to CR2 for hibernate search 6. Add forgotten CLI dep. Add backwards compatible codecs
* Remove dead deps, update testcontainer
* Remove java-hamcrest
* Pull asserts up, refactor tests to pass in RP tests
* Update V2 check
* Remove suggest keyword tests
* Split line for testing
* Fix perhaps one of the dumbest programming mistakes in my career so far
* Refactor tests which no longer rely on a strict known order
* Fix up test config, disable log test temporarily
* Remove log4j from being transitively pulled in. re-enable test
* Update log4j exclusions with new bridge. Update test to check for core class
* Move dependency to root pom in dep management section
* Update changelog, add changelog for HS6 with ES requirements. Remove dead comment
* update testst, remove todos
* Add hibernate props provider method, add elastic regexp query
* Add todo for high level client builder
* Modify ElasticsearchRestClientFactory to support HTTPS hosts
* Remove protocol extraction from rest url
* do we even need to index this...?
* remove purge of non-indexed resources
* Add longer timeout to testcontainers
* Add task to add docker CLI to azure pipeline via task, for testcontainers
* WIP remove this
* Dont update version
* Add test for duplicate termconcepts
* Use real hibernate ORM methods
* merge issues
* Add partitionsettigns bean to match master
* Trying to debug testcontainers on azure...
* Trying to debug testcontainers on azure...
* Run even on previous failure
* Fix testcontainer port binds
* Add full text logs attaching, and test reporting
* I love yaml
* Remove comment
* Refactor delta remove to not do a once-over traversal and flatten all children pre-delete. Resolves transaction commit boundary issue
* Modify TX beheaviour
* wip
* Rework to use config and mocked beans for partition-aware lastN
* rework to not use beans and just inject vars i need for test, keps test envs cleaner
* update azure pipeline to only copy test results
* Remove erroneous publish
* Always get test logs
* Make it so indexing works,
* Add todos
* revert deleteByPid
* Work on test fixes
* Test fixes
* Test fixes
* Another test fix
* Test fix
* Work on tests
* Test fixes
* All tests passing locally
* Fix test failure
* FIx build error
* Rename usages of HibernateDialectProvider -> HibernatePropertiesProvider
* Update ngram of token filters
* Tidying
* subvert the purpose of hibernate elastic props builder to inject template
* dead space
* Rename changed class
Co-authored-by: jamesagnew <jamesagnew@gmail.com>
2021-01-05 17:56:59 -05:00
<version > ${hamcrest_version}</version>
2020-04-17 13:59:22 -04:00
</dependency>
2015-09-08 08:14:55 -04:00
<dependency >
<groupId > org.hibernate</groupId>
<artifactId > hibernate-core</artifactId>
<version > ${hibernate_version}</version>
</dependency>
2020-02-07 15:18:06 -05:00
<dependency >
<groupId > org.hibernate</groupId>
<artifactId > hibernate-java8</artifactId>
<version > ${hibernate_version}</version>
</dependency>
2015-09-08 08:14:55 -04:00
<dependency >
<groupId > org.hibernate</groupId>
<artifactId > hibernate-ehcache</artifactId>
<version > ${hibernate_version}</version>
</dependency>
<dependency >
<groupId > org.hibernate</groupId>
<artifactId > hibernate-entitymanager</artifactId>
<version > ${hibernate_version}</version>
</dependency>
<dependency >
2020-04-13 11:50:49 -04:00
<groupId > org.hibernate.validator</groupId>
2015-09-08 08:14:55 -04:00
<artifactId > hibernate-validator</artifactId>
<version > ${hibernate_validator_version}</version>
</dependency>
2015-10-31 17:09:32 -04:00
<dependency >
Replacing Hibernate Search 5 with Hibernate Search 6 (#2190)
* Beginning work on converting to hibernate search 6
* replace all out of date properties
* replace all POM references to old versions
* remove the shaded ES jars as HS6 supports 7.9
* Convert "Bridges" to RoutingBinder and RoutingBridge
* Modernize all indexing annotations
* Begin refactoring of search queries (wip)
* Fix spatial API changes, work on BaseTermReadSvcImpl
* Most of the way through the various filter property conversions
* Finished i think with BaseTermReadSvcImpl
* Compiling, but definitely broken
* Start test compilation failures
* All tests compiling (i think)
* remove suggest keywords operation
* Fix bootstrap errors, still have to deal with transient fields
* Rollback CR
* More refactoring, got IDs baked back into docs
* Fix coord util, fix a few more fields which require projection
* merge fixes
* begin refactor of valuesetexpansion tests
* fix another test
* Update tests
* remove todos, add TestContainers
* Fix descendant in
* Add testcontainers, fix another test
* fix more tests, replace embedded es
* Rip out embedded elastic, replace with TestContainer
* merge conflicts for new analyzers
* Bump to CR2 for hibernate search 6. Add forgotten CLI dep. Add backwards compatible codecs
* Remove dead deps, update testcontainer
* Remove java-hamcrest
* Pull asserts up, refactor tests to pass in RP tests
* Update V2 check
* Remove suggest keyword tests
* Split line for testing
* Fix perhaps one of the dumbest programming mistakes in my career so far
* Refactor tests which no longer rely on a strict known order
* Fix up test config, disable log test temporarily
* Remove log4j from being transitively pulled in. re-enable test
* Update log4j exclusions with new bridge. Update test to check for core class
* Move dependency to root pom in dep management section
* Update changelog, add changelog for HS6 with ES requirements. Remove dead comment
* update testst, remove todos
* Add hibernate props provider method, add elastic regexp query
* Add todo for high level client builder
* Modify ElasticsearchRestClientFactory to support HTTPS hosts
* Remove protocol extraction from rest url
* do we even need to index this...?
* remove purge of non-indexed resources
* Add longer timeout to testcontainers
* Add task to add docker CLI to azure pipeline via task, for testcontainers
* WIP remove this
* Dont update version
* Add test for duplicate termconcepts
* Use real hibernate ORM methods
* merge issues
* Add partitionsettigns bean to match master
* Trying to debug testcontainers on azure...
* Trying to debug testcontainers on azure...
* Run even on previous failure
* Fix testcontainer port binds
* Add full text logs attaching, and test reporting
* I love yaml
* Remove comment
* Refactor delta remove to not do a once-over traversal and flatten all children pre-delete. Resolves transaction commit boundary issue
* Modify TX beheaviour
* wip
* Rework to use config and mocked beans for partition-aware lastN
* rework to not use beans and just inject vars i need for test, keps test envs cleaner
* update azure pipeline to only copy test results
* Remove erroneous publish
* Always get test logs
* Make it so indexing works,
* Add todos
* revert deleteByPid
* Work on test fixes
* Test fixes
* Test fixes
* Another test fix
* Test fix
* Work on tests
* Test fixes
* All tests passing locally
* Fix test failure
* FIx build error
* Rename usages of HibernateDialectProvider -> HibernatePropertiesProvider
* Update ngram of token filters
* Tidying
* subvert the purpose of hibernate elastic props builder to inject template
* dead space
* Rename changed class
Co-authored-by: jamesagnew <jamesagnew@gmail.com>
2021-01-05 17:56:59 -05:00
<groupId > org.apache.logging.log4j</groupId>
<artifactId > log4j-to-slf4j</artifactId>
<version > ${log4j_to_slf4j_version}</version>
</dependency>
<dependency >
<groupId > org.hibernate.search</groupId>
<artifactId > hibernate-search-mapper-orm</artifactId>
2017-01-30 17:59:01 -05:00
<version > ${hibernate_search_version}</version>
Replacing Hibernate Search 5 with Hibernate Search 6 (#2190)
* Beginning work on converting to hibernate search 6
* replace all out of date properties
* replace all POM references to old versions
* remove the shaded ES jars as HS6 supports 7.9
* Convert "Bridges" to RoutingBinder and RoutingBridge
* Modernize all indexing annotations
* Begin refactoring of search queries (wip)
* Fix spatial API changes, work on BaseTermReadSvcImpl
* Most of the way through the various filter property conversions
* Finished i think with BaseTermReadSvcImpl
* Compiling, but definitely broken
* Start test compilation failures
* All tests compiling (i think)
* remove suggest keywords operation
* Fix bootstrap errors, still have to deal with transient fields
* Rollback CR
* More refactoring, got IDs baked back into docs
* Fix coord util, fix a few more fields which require projection
* merge fixes
* begin refactor of valuesetexpansion tests
* fix another test
* Update tests
* remove todos, add TestContainers
* Fix descendant in
* Add testcontainers, fix another test
* fix more tests, replace embedded es
* Rip out embedded elastic, replace with TestContainer
* merge conflicts for new analyzers
* Bump to CR2 for hibernate search 6. Add forgotten CLI dep. Add backwards compatible codecs
* Remove dead deps, update testcontainer
* Remove java-hamcrest
* Pull asserts up, refactor tests to pass in RP tests
* Update V2 check
* Remove suggest keyword tests
* Split line for testing
* Fix perhaps one of the dumbest programming mistakes in my career so far
* Refactor tests which no longer rely on a strict known order
* Fix up test config, disable log test temporarily
* Remove log4j from being transitively pulled in. re-enable test
* Update log4j exclusions with new bridge. Update test to check for core class
* Move dependency to root pom in dep management section
* Update changelog, add changelog for HS6 with ES requirements. Remove dead comment
* update testst, remove todos
* Add hibernate props provider method, add elastic regexp query
* Add todo for high level client builder
* Modify ElasticsearchRestClientFactory to support HTTPS hosts
* Remove protocol extraction from rest url
* do we even need to index this...?
* remove purge of non-indexed resources
* Add longer timeout to testcontainers
* Add task to add docker CLI to azure pipeline via task, for testcontainers
* WIP remove this
* Dont update version
* Add test for duplicate termconcepts
* Use real hibernate ORM methods
* merge issues
* Add partitionsettigns bean to match master
* Trying to debug testcontainers on azure...
* Trying to debug testcontainers on azure...
* Run even on previous failure
* Fix testcontainer port binds
* Add full text logs attaching, and test reporting
* I love yaml
* Remove comment
* Refactor delta remove to not do a once-over traversal and flatten all children pre-delete. Resolves transaction commit boundary issue
* Modify TX beheaviour
* wip
* Rework to use config and mocked beans for partition-aware lastN
* rework to not use beans and just inject vars i need for test, keps test envs cleaner
* update azure pipeline to only copy test results
* Remove erroneous publish
* Always get test logs
* Make it so indexing works,
* Add todos
* revert deleteByPid
* Work on test fixes
* Test fixes
* Test fixes
* Another test fix
* Test fix
* Work on tests
* Test fixes
* All tests passing locally
* Fix test failure
* FIx build error
* Rename usages of HibernateDialectProvider -> HibernatePropertiesProvider
* Update ngram of token filters
* Tidying
* subvert the purpose of hibernate elastic props builder to inject template
* dead space
* Rename changed class
Co-authored-by: jamesagnew <jamesagnew@gmail.com>
2021-01-05 17:56:59 -05:00
<exclusions >
<exclusion >
<groupId > org.apache.logging.log4j</groupId>
<artifactId > log4j-api</artifactId>
</exclusion>
</exclusions>
2015-10-31 17:09:32 -04:00
</dependency>
2017-10-09 10:59:36 -04:00
<dependency >
Replacing Hibernate Search 5 with Hibernate Search 6 (#2190)
* Beginning work on converting to hibernate search 6
* replace all out of date properties
* replace all POM references to old versions
* remove the shaded ES jars as HS6 supports 7.9
* Convert "Bridges" to RoutingBinder and RoutingBridge
* Modernize all indexing annotations
* Begin refactoring of search queries (wip)
* Fix spatial API changes, work on BaseTermReadSvcImpl
* Most of the way through the various filter property conversions
* Finished i think with BaseTermReadSvcImpl
* Compiling, but definitely broken
* Start test compilation failures
* All tests compiling (i think)
* remove suggest keywords operation
* Fix bootstrap errors, still have to deal with transient fields
* Rollback CR
* More refactoring, got IDs baked back into docs
* Fix coord util, fix a few more fields which require projection
* merge fixes
* begin refactor of valuesetexpansion tests
* fix another test
* Update tests
* remove todos, add TestContainers
* Fix descendant in
* Add testcontainers, fix another test
* fix more tests, replace embedded es
* Rip out embedded elastic, replace with TestContainer
* merge conflicts for new analyzers
* Bump to CR2 for hibernate search 6. Add forgotten CLI dep. Add backwards compatible codecs
* Remove dead deps, update testcontainer
* Remove java-hamcrest
* Pull asserts up, refactor tests to pass in RP tests
* Update V2 check
* Remove suggest keyword tests
* Split line for testing
* Fix perhaps one of the dumbest programming mistakes in my career so far
* Refactor tests which no longer rely on a strict known order
* Fix up test config, disable log test temporarily
* Remove log4j from being transitively pulled in. re-enable test
* Update log4j exclusions with new bridge. Update test to check for core class
* Move dependency to root pom in dep management section
* Update changelog, add changelog for HS6 with ES requirements. Remove dead comment
* update testst, remove todos
* Add hibernate props provider method, add elastic regexp query
* Add todo for high level client builder
* Modify ElasticsearchRestClientFactory to support HTTPS hosts
* Remove protocol extraction from rest url
* do we even need to index this...?
* remove purge of non-indexed resources
* Add longer timeout to testcontainers
* Add task to add docker CLI to azure pipeline via task, for testcontainers
* WIP remove this
* Dont update version
* Add test for duplicate termconcepts
* Use real hibernate ORM methods
* merge issues
* Add partitionsettigns bean to match master
* Trying to debug testcontainers on azure...
* Trying to debug testcontainers on azure...
* Run even on previous failure
* Fix testcontainer port binds
* Add full text logs attaching, and test reporting
* I love yaml
* Remove comment
* Refactor delta remove to not do a once-over traversal and flatten all children pre-delete. Resolves transaction commit boundary issue
* Modify TX beheaviour
* wip
* Rework to use config and mocked beans for partition-aware lastN
* rework to not use beans and just inject vars i need for test, keps test envs cleaner
* update azure pipeline to only copy test results
* Remove erroneous publish
* Always get test logs
* Make it so indexing works,
* Add todos
* revert deleteByPid
* Work on test fixes
* Test fixes
* Test fixes
* Another test fix
* Test fix
* Work on tests
* Test fixes
* All tests passing locally
* Fix test failure
* FIx build error
* Rename usages of HibernateDialectProvider -> HibernatePropertiesProvider
* Update ngram of token filters
* Tidying
* subvert the purpose of hibernate elastic props builder to inject template
* dead space
* Rename changed class
Co-authored-by: jamesagnew <jamesagnew@gmail.com>
2021-01-05 17:56:59 -05:00
<groupId > org.elasticsearch.client</groupId>
<artifactId > elasticsearch-rest-high-level-client</artifactId>
2021-01-20 11:31:00 -05:00
<version > 7.10.2</version>
Replacing Hibernate Search 5 with Hibernate Search 6 (#2190)
* Beginning work on converting to hibernate search 6
* replace all out of date properties
* replace all POM references to old versions
* remove the shaded ES jars as HS6 supports 7.9
* Convert "Bridges" to RoutingBinder and RoutingBridge
* Modernize all indexing annotations
* Begin refactoring of search queries (wip)
* Fix spatial API changes, work on BaseTermReadSvcImpl
* Most of the way through the various filter property conversions
* Finished i think with BaseTermReadSvcImpl
* Compiling, but definitely broken
* Start test compilation failures
* All tests compiling (i think)
* remove suggest keywords operation
* Fix bootstrap errors, still have to deal with transient fields
* Rollback CR
* More refactoring, got IDs baked back into docs
* Fix coord util, fix a few more fields which require projection
* merge fixes
* begin refactor of valuesetexpansion tests
* fix another test
* Update tests
* remove todos, add TestContainers
* Fix descendant in
* Add testcontainers, fix another test
* fix more tests, replace embedded es
* Rip out embedded elastic, replace with TestContainer
* merge conflicts for new analyzers
* Bump to CR2 for hibernate search 6. Add forgotten CLI dep. Add backwards compatible codecs
* Remove dead deps, update testcontainer
* Remove java-hamcrest
* Pull asserts up, refactor tests to pass in RP tests
* Update V2 check
* Remove suggest keyword tests
* Split line for testing
* Fix perhaps one of the dumbest programming mistakes in my career so far
* Refactor tests which no longer rely on a strict known order
* Fix up test config, disable log test temporarily
* Remove log4j from being transitively pulled in. re-enable test
* Update log4j exclusions with new bridge. Update test to check for core class
* Move dependency to root pom in dep management section
* Update changelog, add changelog for HS6 with ES requirements. Remove dead comment
* update testst, remove todos
* Add hibernate props provider method, add elastic regexp query
* Add todo for high level client builder
* Modify ElasticsearchRestClientFactory to support HTTPS hosts
* Remove protocol extraction from rest url
* do we even need to index this...?
* remove purge of non-indexed resources
* Add longer timeout to testcontainers
* Add task to add docker CLI to azure pipeline via task, for testcontainers
* WIP remove this
* Dont update version
* Add test for duplicate termconcepts
* Use real hibernate ORM methods
* merge issues
* Add partitionsettigns bean to match master
* Trying to debug testcontainers on azure...
* Trying to debug testcontainers on azure...
* Run even on previous failure
* Fix testcontainer port binds
* Add full text logs attaching, and test reporting
* I love yaml
* Remove comment
* Refactor delta remove to not do a once-over traversal and flatten all children pre-delete. Resolves transaction commit boundary issue
* Modify TX beheaviour
* wip
* Rework to use config and mocked beans for partition-aware lastN
* rework to not use beans and just inject vars i need for test, keps test envs cleaner
* update azure pipeline to only copy test results
* Remove erroneous publish
* Always get test logs
* Make it so indexing works,
* Add todos
* revert deleteByPid
* Work on test fixes
* Test fixes
* Test fixes
* Another test fix
* Test fix
* Work on tests
* Test fixes
* All tests passing locally
* Fix test failure
* FIx build error
* Rename usages of HibernateDialectProvider -> HibernatePropertiesProvider
* Update ngram of token filters
* Tidying
* subvert the purpose of hibernate elastic props builder to inject template
* dead space
* Rename changed class
Co-authored-by: jamesagnew <jamesagnew@gmail.com>
2021-01-05 17:56:59 -05:00
</dependency>
<dependency >
<groupId > org.hibernate.search</groupId>
<artifactId > hibernate-search-backend-elasticsearch</artifactId>
2017-10-09 10:59:36 -04:00
<version > ${hibernate_search_version}</version>
</dependency>
2020-04-10 20:01:59 -04:00
<dependency >
Replacing Hibernate Search 5 with Hibernate Search 6 (#2190)
* Beginning work on converting to hibernate search 6
* replace all out of date properties
* replace all POM references to old versions
* remove the shaded ES jars as HS6 supports 7.9
* Convert "Bridges" to RoutingBinder and RoutingBridge
* Modernize all indexing annotations
* Begin refactoring of search queries (wip)
* Fix spatial API changes, work on BaseTermReadSvcImpl
* Most of the way through the various filter property conversions
* Finished i think with BaseTermReadSvcImpl
* Compiling, but definitely broken
* Start test compilation failures
* All tests compiling (i think)
* remove suggest keywords operation
* Fix bootstrap errors, still have to deal with transient fields
* Rollback CR
* More refactoring, got IDs baked back into docs
* Fix coord util, fix a few more fields which require projection
* merge fixes
* begin refactor of valuesetexpansion tests
* fix another test
* Update tests
* remove todos, add TestContainers
* Fix descendant in
* Add testcontainers, fix another test
* fix more tests, replace embedded es
* Rip out embedded elastic, replace with TestContainer
* merge conflicts for new analyzers
* Bump to CR2 for hibernate search 6. Add forgotten CLI dep. Add backwards compatible codecs
* Remove dead deps, update testcontainer
* Remove java-hamcrest
* Pull asserts up, refactor tests to pass in RP tests
* Update V2 check
* Remove suggest keyword tests
* Split line for testing
* Fix perhaps one of the dumbest programming mistakes in my career so far
* Refactor tests which no longer rely on a strict known order
* Fix up test config, disable log test temporarily
* Remove log4j from being transitively pulled in. re-enable test
* Update log4j exclusions with new bridge. Update test to check for core class
* Move dependency to root pom in dep management section
* Update changelog, add changelog for HS6 with ES requirements. Remove dead comment
* update testst, remove todos
* Add hibernate props provider method, add elastic regexp query
* Add todo for high level client builder
* Modify ElasticsearchRestClientFactory to support HTTPS hosts
* Remove protocol extraction from rest url
* do we even need to index this...?
* remove purge of non-indexed resources
* Add longer timeout to testcontainers
* Add task to add docker CLI to azure pipeline via task, for testcontainers
* WIP remove this
* Dont update version
* Add test for duplicate termconcepts
* Use real hibernate ORM methods
* merge issues
* Add partitionsettigns bean to match master
* Trying to debug testcontainers on azure...
* Trying to debug testcontainers on azure...
* Run even on previous failure
* Fix testcontainer port binds
* Add full text logs attaching, and test reporting
* I love yaml
* Remove comment
* Refactor delta remove to not do a once-over traversal and flatten all children pre-delete. Resolves transaction commit boundary issue
* Modify TX beheaviour
* wip
* Rework to use config and mocked beans for partition-aware lastN
* rework to not use beans and just inject vars i need for test, keps test envs cleaner
* update azure pipeline to only copy test results
* Remove erroneous publish
* Always get test logs
* Make it so indexing works,
* Add todos
* revert deleteByPid
* Work on test fixes
* Test fixes
* Test fixes
* Another test fix
* Test fix
* Work on tests
* Test fixes
* All tests passing locally
* Fix test failure
* FIx build error
* Rename usages of HibernateDialectProvider -> HibernatePropertiesProvider
* Update ngram of token filters
* Tidying
* subvert the purpose of hibernate elastic props builder to inject template
* dead space
* Rename changed class
Co-authored-by: jamesagnew <jamesagnew@gmail.com>
2021-01-05 17:56:59 -05:00
<groupId > org.hibernate.search</groupId>
<artifactId > hibernate-search-backend-lucene</artifactId>
2020-04-12 20:47:32 -04:00
<version > ${hibernate_search_version}</version>
2020-04-10 20:01:59 -04:00
</dependency>
2015-10-29 15:38:19 -04:00
<dependency >
<groupId > org.javassist</groupId>
<artifactId > javassist</artifactId>
2018-04-06 09:12:22 -04:00
<version > 3.22.0-GA</version>
2015-10-29 15:38:19 -04:00
</dependency>
2020-07-04 18:28:16 -04:00
<dependency >
<groupId > org.junit.jupiter</groupId>
<artifactId > junit-jupiter</artifactId>
2020-10-12 17:16:00 -04:00
<version > ${junit_version}</version>
2020-07-04 18:28:16 -04:00
<scope > test</scope>
</dependency>
<dependency >
<groupId > org.junit.jupiter</groupId>
<artifactId > junit-jupiter-api</artifactId>
2020-10-12 17:16:00 -04:00
<version > ${junit_version}</version>
2020-07-04 18:28:16 -04:00
<scope > test</scope>
</dependency>
<dependency >
<groupId > org.junit.jupiter</groupId>
<artifactId > junit-jupiter-engine</artifactId>
2020-10-12 17:16:00 -04:00
<version > ${junit_version}</version>
<scope > test</scope>
</dependency>
<dependency >
<groupId > org.junit.jupiter</groupId>
<artifactId > junit-jupiter-params</artifactId>
<version > ${junit_version}</version>
2020-07-04 18:28:16 -04:00
<scope > test</scope>
</dependency>
2020-12-14 06:06:07 -05:00
<dependency >
<groupId > org.junit-pioneer</groupId>
<artifactId > junit-pioneer</artifactId>
<version > 1.1.0</version>
</dependency>
2018-09-07 19:14:43 -04:00
<dependency >
<groupId > org.mariadb.jdbc</groupId>
<artifactId > mariadb-java-client</artifactId>
2019-10-22 17:10:58 -04:00
<version > 2.5.1</version>
2018-09-07 19:14:43 -04:00
</dependency>
2016-12-25 12:48:36 -05:00
<dependency >
<groupId > org.mockito</groupId>
2018-05-03 18:34:29 -04:00
<artifactId > mockito-core</artifactId>
2021-01-01 15:50:00 -05:00
<version > 3.6.28</version>
2016-12-25 12:48:36 -05:00
</dependency>
2020-07-04 18:28:16 -04:00
<dependency >
<groupId > org.mockito</groupId>
<artifactId > mockito-junit-jupiter</artifactId>
<version > 3.3.3</version>
</dependency>
2018-09-07 19:14:43 -04:00
<dependency >
<groupId > org.postgresql</groupId>
<artifactId > postgresql</artifactId>
2020-10-26 19:34:50 -04:00
<version > 42.2.18</version>
2018-09-07 19:14:43 -04:00
</dependency>
2019-09-17 16:01:35 -04:00
<dependency >
<groupId > org.quartz-scheduler</groupId>
<artifactId > quartz</artifactId>
2020-03-17 12:47:12 -04:00
<version > 2.3.2</version>
2019-09-17 16:01:35 -04:00
</dependency>
2015-08-31 08:20:24 -04:00
<dependency >
<groupId > org.slf4j</groupId>
<artifactId > slf4j-android</artifactId>
2018-06-03 16:19:33 -04:00
<version > ${slf4j_version}</version>
2015-08-31 08:20:24 -04:00
</dependency>
<dependency >
<groupId > org.slf4j</groupId>
<artifactId > slf4j-api</artifactId>
2018-06-03 16:19:33 -04:00
<version > ${slf4j_version}</version>
2015-08-31 08:20:24 -04:00
</dependency>
<dependency >
<groupId > org.slf4j</groupId>
<artifactId > jcl-over-slf4j</artifactId>
2018-06-03 16:19:33 -04:00
<version > ${slf4j_version}</version>
2015-08-31 08:20:24 -04:00
</dependency>
Replacing Hibernate Search 5 with Hibernate Search 6 (#2190)
* Beginning work on converting to hibernate search 6
* replace all out of date properties
* replace all POM references to old versions
* remove the shaded ES jars as HS6 supports 7.9
* Convert "Bridges" to RoutingBinder and RoutingBridge
* Modernize all indexing annotations
* Begin refactoring of search queries (wip)
* Fix spatial API changes, work on BaseTermReadSvcImpl
* Most of the way through the various filter property conversions
* Finished i think with BaseTermReadSvcImpl
* Compiling, but definitely broken
* Start test compilation failures
* All tests compiling (i think)
* remove suggest keywords operation
* Fix bootstrap errors, still have to deal with transient fields
* Rollback CR
* More refactoring, got IDs baked back into docs
* Fix coord util, fix a few more fields which require projection
* merge fixes
* begin refactor of valuesetexpansion tests
* fix another test
* Update tests
* remove todos, add TestContainers
* Fix descendant in
* Add testcontainers, fix another test
* fix more tests, replace embedded es
* Rip out embedded elastic, replace with TestContainer
* merge conflicts for new analyzers
* Bump to CR2 for hibernate search 6. Add forgotten CLI dep. Add backwards compatible codecs
* Remove dead deps, update testcontainer
* Remove java-hamcrest
* Pull asserts up, refactor tests to pass in RP tests
* Update V2 check
* Remove suggest keyword tests
* Split line for testing
* Fix perhaps one of the dumbest programming mistakes in my career so far
* Refactor tests which no longer rely on a strict known order
* Fix up test config, disable log test temporarily
* Remove log4j from being transitively pulled in. re-enable test
* Update log4j exclusions with new bridge. Update test to check for core class
* Move dependency to root pom in dep management section
* Update changelog, add changelog for HS6 with ES requirements. Remove dead comment
* update testst, remove todos
* Add hibernate props provider method, add elastic regexp query
* Add todo for high level client builder
* Modify ElasticsearchRestClientFactory to support HTTPS hosts
* Remove protocol extraction from rest url
* do we even need to index this...?
* remove purge of non-indexed resources
* Add longer timeout to testcontainers
* Add task to add docker CLI to azure pipeline via task, for testcontainers
* WIP remove this
* Dont update version
* Add test for duplicate termconcepts
* Use real hibernate ORM methods
* merge issues
* Add partitionsettigns bean to match master
* Trying to debug testcontainers on azure...
* Trying to debug testcontainers on azure...
* Run even on previous failure
* Fix testcontainer port binds
* Add full text logs attaching, and test reporting
* I love yaml
* Remove comment
* Refactor delta remove to not do a once-over traversal and flatten all children pre-delete. Resolves transaction commit boundary issue
* Modify TX beheaviour
* wip
* Rework to use config and mocked beans for partition-aware lastN
* rework to not use beans and just inject vars i need for test, keps test envs cleaner
* update azure pipeline to only copy test results
* Remove erroneous publish
* Always get test logs
* Make it so indexing works,
* Add todos
* revert deleteByPid
* Work on test fixes
* Test fixes
* Test fixes
* Another test fix
* Test fix
* Work on tests
* Test fixes
* All tests passing locally
* Fix test failure
* FIx build error
* Rename usages of HibernateDialectProvider -> HibernatePropertiesProvider
* Update ngram of token filters
* Tidying
* subvert the purpose of hibernate elastic props builder to inject template
* dead space
* Rename changed class
Co-authored-by: jamesagnew <jamesagnew@gmail.com>
2021-01-05 17:56:59 -05:00
<dependency >
<groupId > org.slf4j</groupId>
<artifactId > log4j-over-slf4j</artifactId>
<version > ${slf4j_version}</version>
</dependency>
2015-08-16 22:09:01 -04:00
<dependency >
2015-08-19 11:49:00 -04:00
<groupId > org.springframework</groupId>
<artifactId > spring-beans</artifactId>
<version > ${spring_version}</version>
</dependency>
<dependency >
<groupId > org.springframework</groupId>
<artifactId > spring-context</artifactId>
<version > ${spring_version}</version>
</dependency>
<dependency >
<groupId > org.springframework</groupId>
<artifactId > spring-context-support</artifactId>
<version > ${spring_version}</version>
</dependency>
<dependency >
<groupId > org.springframework</groupId>
<artifactId > spring-core</artifactId>
<version > ${spring_version}</version>
</dependency>
2018-08-27 08:21:20 -04:00
<dependency >
<groupId > org.springframework</groupId>
<artifactId > spring-jdbc</artifactId>
<version > ${spring_version}</version>
</dependency>
2015-09-24 07:01:04 -04:00
<dependency >
<groupId > org.springframework.data</groupId>
<artifactId > spring-data-jpa</artifactId>
2018-05-31 08:42:15 -04:00
<version > ${spring_data_version}</version>
</dependency>
<dependency >
<groupId > org.springframework.data</groupId>
<artifactId > spring-data-commons</artifactId>
<version > ${spring_data_version}</version>
2015-09-24 07:01:04 -04:00
</dependency>
2015-09-28 09:06:57 -04:00
<dependency >
<groupId > org.springframework</groupId>
<artifactId > spring-messaging</artifactId>
<version > ${spring_version}</version>
</dependency>
2015-08-19 11:49:00 -04:00
<dependency >
<groupId > org.springframework</groupId>
<artifactId > spring-orm</artifactId>
<version > ${spring_version}</version>
</dependency>
2015-08-20 14:27:19 -04:00
<dependency >
<groupId > org.springframework</groupId>
<artifactId > spring-test</artifactId>
<version > ${spring_version}</version>
</dependency>
2019-02-01 10:14:46 -05:00
<dependency >
<groupId > org.springframework.boot</groupId>
<artifactId > spring-boot-starter-test</artifactId>
<version > ${spring_boot_version}</version>
</dependency>
2019-06-13 13:59:51 -04:00
<dependency >
<groupId > org.springframework.boot</groupId>
<artifactId > spring-boot-test</artifactId>
<version > ${spring_boot_version}</version>
</dependency>
2015-08-19 11:49:00 -04:00
<dependency >
<groupId > org.springframework</groupId>
<artifactId > spring-tx</artifactId>
<version > ${spring_version}</version>
2015-08-16 22:09:01 -04:00
</dependency>
2015-08-31 08:20:24 -04:00
<dependency >
<groupId > org.springframework</groupId>
<artifactId > spring-web</artifactId>
<version > ${spring_version}</version>
</dependency>
2015-09-21 09:08:19 -04:00
<dependency >
<groupId > org.springframework</groupId>
<artifactId > spring-webmvc</artifactId>
<version > ${spring_version}</version>
</dependency>
2015-09-28 09:06:57 -04:00
<dependency >
<groupId > org.springframework</groupId>
<artifactId > spring-websocket</artifactId>
<version > ${spring_version}</version>
</dependency>
2019-02-01 10:14:46 -05:00
<dependency >
<groupId > org.springframework.retry</groupId>
<artifactId > spring-retry</artifactId>
<version > ${spring_retry_version}</version>
</dependency>
2015-08-31 08:20:24 -04:00
<dependency >
<groupId > org.thymeleaf</groupId>
<artifactId > thymeleaf</artifactId>
<version > ${thymeleaf-version}</version>
</dependency>
2015-10-17 09:39:27 -04:00
<dependency >
<groupId > org.thymeleaf</groupId>
2018-11-15 05:35:50 -05:00
<artifactId > thymeleaf-spring5</artifactId>
2015-10-17 09:39:27 -04:00
<version > ${thymeleaf-version}</version>
</dependency>
2019-10-21 07:22:55 -04:00
<dependency >
2020-10-12 20:47:14 -04:00
<groupId > org.webjars.npm</groupId>
2019-10-21 07:22:55 -04:00
<artifactId > bootstrap</artifactId>
2020-10-12 20:47:14 -04:00
<version > 4.5.2</version>
2019-10-21 07:22:55 -04:00
</dependency>
<dependency >
<groupId > org.webjars</groupId>
<artifactId > Eonasdan-bootstrap-datetimepicker</artifactId>
2020-10-12 20:47:14 -04:00
<version > 4.17.47</version>
2019-10-21 07:22:55 -04:00
</dependency>
<dependency >
<groupId > org.webjars</groupId>
<artifactId > font-awesome</artifactId>
<version > 5.8.2</version>
</dependency>
<dependency >
<groupId > org.webjars.bower</groupId>
<artifactId > awesome-bootstrap-checkbox</artifactId>
2020-09-14 08:42:28 -04:00
<version > 1.0.2</version>
2019-10-21 07:22:55 -04:00
</dependency>
<dependency >
<groupId > org.webjars</groupId>
<artifactId > jstimezonedetect</artifactId>
<version > 1.0.6</version>
</dependency>
<dependency >
<groupId > org.webjars</groupId>
<artifactId > select2</artifactId>
2020-09-14 08:42:28 -04:00
<version > 4.0.13</version>
<exclusions >
<exclusion >
<groupId > org.webjars</groupId>
<artifactId > jquery</artifactId>
</exclusion>
</exclusions>
2019-10-21 07:22:55 -04:00
</dependency>
<dependency >
<groupId > org.webjars.bower</groupId>
<artifactId > jquery</artifactId>
2020-09-14 08:42:28 -04:00
<version > 3.5.1</version>
2019-10-21 07:22:55 -04:00
</dependency>
<dependency >
<groupId > org.webjars.bower</groupId>
<artifactId > moment</artifactId>
2020-09-14 08:42:28 -04:00
<version > 2.27.0</version>
2019-10-21 07:22:55 -04:00
</dependency>
2020-10-12 20:47:14 -04:00
<dependency >
<groupId > org.webjars.npm</groupId>
<artifactId > popper.js</artifactId>
<version > 1.16.1</version>
</dependency>
2015-08-31 08:39:49 -04:00
<dependency >
2017-08-13 14:39:47 -04:00
<groupId > org.xmlunit</groupId>
<artifactId > xmlunit-core</artifactId>
<version > 2.4.0</version>
</dependency>
2019-09-30 09:30:39 -04:00
<dependency >
Replacing Hibernate Search 5 with Hibernate Search 6 (#2190)
* Beginning work on converting to hibernate search 6
* replace all out of date properties
* replace all POM references to old versions
* remove the shaded ES jars as HS6 supports 7.9
* Convert "Bridges" to RoutingBinder and RoutingBridge
* Modernize all indexing annotations
* Begin refactoring of search queries (wip)
* Fix spatial API changes, work on BaseTermReadSvcImpl
* Most of the way through the various filter property conversions
* Finished i think with BaseTermReadSvcImpl
* Compiling, but definitely broken
* Start test compilation failures
* All tests compiling (i think)
* remove suggest keywords operation
* Fix bootstrap errors, still have to deal with transient fields
* Rollback CR
* More refactoring, got IDs baked back into docs
* Fix coord util, fix a few more fields which require projection
* merge fixes
* begin refactor of valuesetexpansion tests
* fix another test
* Update tests
* remove todos, add TestContainers
* Fix descendant in
* Add testcontainers, fix another test
* fix more tests, replace embedded es
* Rip out embedded elastic, replace with TestContainer
* merge conflicts for new analyzers
* Bump to CR2 for hibernate search 6. Add forgotten CLI dep. Add backwards compatible codecs
* Remove dead deps, update testcontainer
* Remove java-hamcrest
* Pull asserts up, refactor tests to pass in RP tests
* Update V2 check
* Remove suggest keyword tests
* Split line for testing
* Fix perhaps one of the dumbest programming mistakes in my career so far
* Refactor tests which no longer rely on a strict known order
* Fix up test config, disable log test temporarily
* Remove log4j from being transitively pulled in. re-enable test
* Update log4j exclusions with new bridge. Update test to check for core class
* Move dependency to root pom in dep management section
* Update changelog, add changelog for HS6 with ES requirements. Remove dead comment
* update testst, remove todos
* Add hibernate props provider method, add elastic regexp query
* Add todo for high level client builder
* Modify ElasticsearchRestClientFactory to support HTTPS hosts
* Remove protocol extraction from rest url
* do we even need to index this...?
* remove purge of non-indexed resources
* Add longer timeout to testcontainers
* Add task to add docker CLI to azure pipeline via task, for testcontainers
* WIP remove this
* Dont update version
* Add test for duplicate termconcepts
* Use real hibernate ORM methods
* merge issues
* Add partitionsettigns bean to match master
* Trying to debug testcontainers on azure...
* Trying to debug testcontainers on azure...
* Run even on previous failure
* Fix testcontainer port binds
* Add full text logs attaching, and test reporting
* I love yaml
* Remove comment
* Refactor delta remove to not do a once-over traversal and flatten all children pre-delete. Resolves transaction commit boundary issue
* Modify TX beheaviour
* wip
* Rework to use config and mocked beans for partition-aware lastN
* rework to not use beans and just inject vars i need for test, keps test envs cleaner
* update azure pipeline to only copy test results
* Remove erroneous publish
* Always get test logs
* Make it so indexing works,
* Add todos
* revert deleteByPid
* Work on test fixes
* Test fixes
* Test fixes
* Another test fix
* Test fix
* Work on tests
* Test fixes
* All tests passing locally
* Fix test failure
* FIx build error
* Rename usages of HibernateDialectProvider -> HibernatePropertiesProvider
* Update ngram of token filters
* Tidying
* subvert the purpose of hibernate elastic props builder to inject template
* dead space
* Rename changed class
Co-authored-by: jamesagnew <jamesagnew@gmail.com>
2021-01-05 17:56:59 -05:00
<groupId > org.testcontainers</groupId>
<artifactId > testcontainers</artifactId>
<version > 1.15.1</version>
<scope > test</scope>
</dependency>
<dependency >
<groupId > org.testcontainers</groupId>
<artifactId > elasticsearch</artifactId>
<version > 1.15.1</version>
<scope > test</scope>
</dependency>
<dependency >
<groupId > org.testcontainers</groupId>
<artifactId > junit-jupiter</artifactId>
<version > 1.15.1</version>
<scope > test</scope>
2019-09-30 09:30:39 -04:00
</dependency>
2017-08-13 14:39:47 -04:00
<dependency >
<groupId > xpp3</groupId>
<artifactId > xpp3</artifactId>
<version > 1.1.4c</version>
</dependency>
<dependency >
<groupId > xpp3</groupId>
<artifactId > xpp3_xpath</artifactId>
<version > 1.1.4c</version>
2015-08-31 08:39:49 -04:00
</dependency>
2019-10-06 17:55:10 -04:00
<dependency >
<groupId > org.flywaydb</groupId>
<artifactId > flyway-core</artifactId>
2019-11-04 08:27:34 -05:00
<version > ${flyway_version}</version>
2019-10-06 17:55:10 -04:00
</dependency>
2015-08-16 22:09:01 -04:00
</dependencies>
</dependencyManagement>
2020-03-24 06:10:29 -04:00
<!--
2018-06-06 06:11:17 -04:00
<pluginRepositories >
<pluginRepository >
<id > ossrh</id>
<name > Sonatype</name>
<url > https://oss.sonatype.org/content/repositories/snapshots</url>
<snapshots >
<enabled > true</enabled>
</snapshots>
</pluginRepository>
2018-11-30 17:19:16 -05:00
<pluginRepository >
<id > maven2</id>
<name > Maven2</name>
2020-03-24 06:09:03 -04:00
<url > https://central.maven.org/maven2/</url>
2018-11-30 17:19:16 -05:00
<snapshots >
<enabled > true</enabled>
</snapshots>
</pluginRepository>
2018-06-06 06:11:17 -04:00
</pluginRepositories>
2020-03-24 06:10:29 -04:00
-->
2018-06-06 06:11:17 -04:00
2014-02-17 17:58:32 -05:00
<build >
<pluginManagement >
<plugins >
2018-06-03 16:19:33 -04:00
<plugin >
<groupId > org.springframework.boot</groupId>
<artifactId > spring-boot-maven-plugin</artifactId>
2019-02-01 10:14:46 -05:00
<version > ${spring_boot_version}</version>
2018-06-03 16:19:33 -04:00
</plugin>
2018-04-29 08:02:05 -04:00
<plugin >
<groupId > org.sonatype.plugins</groupId>
<artifactId > nexus-staging-maven-plugin</artifactId>
<version > 1.6.8</version>
<extensions > true</extensions>
<configuration >
<serverId > ossrh</serverId>
<nexusUrl > https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose > true</autoReleaseAfterClose>
</configuration>
</plugin>
2018-01-04 14:45:17 -05:00
<plugin >
<groupId > com.gemnasium</groupId>
<artifactId > gemnasium-maven-plugin</artifactId>
<version > 0.2.0</version>
<configuration >
2021-01-01 15:07:23 -05:00
<projectSlug > github.com/hapifhir/hapi-fhir</projectSlug>
2018-01-04 14:45:17 -05:00
</configuration>
</plugin>
2017-10-15 11:27:30 -04:00
<plugin >
<groupId > org.basepom.maven</groupId>
<artifactId > duplicate-finder-maven-plugin</artifactId>
2020-03-25 18:02:13 -04:00
<version > 1.4.0</version>
2017-10-15 11:27:30 -04:00
</plugin>
2015-09-20 10:18:33 -04:00
<plugin >
2018-11-30 17:19:16 -05:00
<groupId > de.jpdigital</groupId>
2019-07-14 10:16:40 -04:00
<artifactId > hibernate54-ddl-maven-plugin</artifactId>
<version > 2.3.0</version>
2015-09-20 10:18:33 -04:00
</plugin>
2018-12-23 15:11:44 -05:00
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-assembly-plugin</artifactId>
<version > ${maven_assembly_plugin_version}</version>
</plugin>
2015-09-19 11:00:57 -04:00
<plugin >
<groupId > org.apache.felix</groupId>
<artifactId > maven-bundle-plugin</artifactId>
2018-02-27 12:52:47 -05:00
<version > 3.5.0</version>
2015-09-19 11:00:57 -04:00
</plugin>
2015-07-21 08:59:44 -04:00
<plugin >
<groupId > org.apache.maven.plugins</groupId>
2015-08-31 08:20:24 -04:00
<artifactId > maven-antrun-plugin</artifactId>
2020-06-23 11:35:10 -04:00
<version > 3.0.0</version>
2015-06-21 22:10:13 -04:00
</plugin>
2018-05-14 17:38:40 -04:00
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-clean-plugin</artifactId>
<version > 3.1.0</version>
</plugin>
2014-02-17 17:58:32 -05:00
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-compiler-plugin</artifactId>
2019-10-22 17:10:58 -04:00
<version > 3.8.1</version>
2014-02-17 17:58:32 -05:00
<configuration >
2018-03-11 19:11:31 -04:00
<source > 1.8</source>
<target > 1.8</target>
2015-06-17 13:51:05 -04:00
<forceJavacCompilerUse > true</forceJavacCompilerUse>
2015-08-28 11:35:12 -04:00
<encoding > UTF-8</encoding>
2017-11-13 13:50:39 -05:00
<fork > true</fork>
2018-02-24 22:10:55 -05:00
<meminitial > 500m</meminitial>
<maxmem > 2000m</maxmem>
2014-02-17 17:58:32 -05:00
</configuration>
2015-03-28 19:28:34 -04:00
<dependencies >
</dependencies>
2014-02-17 17:58:32 -05:00
</plugin>
2015-09-11 16:13:40 -04:00
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-dependency-plugin</artifactId>
2021-01-04 06:49:12 -05:00
<version > 3.1.2</version>
2015-09-11 16:13:40 -04:00
</plugin>
2015-08-19 08:52:37 -04:00
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-deploy-plugin</artifactId>
<version > 2.8.2</version>
</plugin>
2015-09-20 10:18:33 -04:00
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-gpg-plugin</artifactId>
<version > 1.6</version>
</plugin>
2015-08-19 08:52:37 -04:00
<plugin >
2015-08-19 11:49:00 -04:00
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-javadoc-plugin</artifactId>
2019-09-22 08:58:17 -04:00
<version > 3.1.1</version>
2015-08-19 08:52:37 -04:00
</plugin>
2019-07-03 14:08:01 -04:00
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-jar-plugin</artifactId>
2019-10-22 17:10:58 -04:00
<version > 3.1.2</version>
2019-07-03 14:08:01 -04:00
</plugin>
2015-09-20 10:18:33 -04:00
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-jxr-plugin</artifactId>
2018-12-28 11:42:21 -05:00
<version > 3.0.0</version>
2015-09-20 10:18:33 -04:00
</plugin>
2015-08-19 08:52:37 -04:00
<plugin >
2015-08-19 11:49:00 -04:00
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-failsafe-plugin</artifactId>
2021-01-01 15:06:34 -05:00
<version > 3.0.0-M5</version>
2015-08-19 08:52:37 -04:00
</plugin>
2017-03-31 14:33:07 -04:00
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-plugin-plugin</artifactId>
<version > 3.5</version>
</plugin>
2016-02-03 08:35:05 -05:00
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-shade-plugin</artifactId>
<version > 2.4.3</version>
</plugin>
2015-08-19 08:52:37 -04:00
<plugin >
2015-08-19 11:49:00 -04:00
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-source-plugin</artifactId>
2019-10-22 17:10:58 -04:00
<version > 3.1.0</version>
2016-01-28 14:31:21 -05:00
<dependencies >
<dependency >
<groupId > org.codehaus.plexus</groupId>
<artifactId > plexus-utils</artifactId>
2017-08-16 11:20:21 -04:00
<version > 3.1.0</version>
2016-01-28 14:31:21 -05:00
</dependency>
</dependencies>
2015-08-19 08:52:37 -04:00
</plugin>
2014-09-03 12:57:17 -04:00
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-surefire-plugin</artifactId>
2021-01-01 15:06:34 -05:00
<version > 3.0.0-M5</version>
2014-09-03 12:57:17 -04:00
<configuration >
2015-06-21 22:10:13 -04:00
<redirectTestOutputToFile > true</redirectTestOutputToFile>
2014-09-04 18:03:19 -04:00
<runOrder > random</runOrder>
2019-11-23 13:51:02 -05:00
<argLine > @{argLine} ${surefire_jvm_args}</argLine>
2016-08-05 12:36:41 -04:00
<forkCount > 1.0C</forkCount>
2019-11-23 13:51:02 -05:00
<trimStackTrace > false</trimStackTrace>
2014-09-03 12:57:17 -04:00
</configuration>
</plugin>
2014-03-24 08:32:28 -04:00
<plugin >
<groupId > org.apache.maven.plugins</groupId>
2015-08-19 11:49:00 -04:00
<artifactId > maven-war-plugin</artifactId>
2019-10-22 17:10:58 -04:00
<version > 3.2.3</version>
2014-03-24 08:32:28 -04:00
</plugin>
2015-10-21 07:57:42 -04:00
<plugin >
<groupId > org.codehaus.mojo</groupId>
<artifactId > build-helper-maven-plugin</artifactId>
2017-03-31 14:32:46 -04:00
<version > 3.0.0</version>
2015-10-21 07:57:42 -04:00
</plugin>
2019-01-17 16:05:54 -05:00
<plugin >
<groupId > org.codehaus.mojo</groupId>
<artifactId > buildnumber-maven-plugin</artifactId>
<version > 1.4</version>
</plugin>
2014-03-24 08:32:28 -04:00
<plugin >
2015-08-19 11:49:00 -04:00
<groupId > org.codehaus.mojo</groupId>
<artifactId > animal-sniffer-maven-plugin</artifactId>
2020-09-16 08:02:01 -04:00
<version > 1.19</version>
2014-03-24 08:32:28 -04:00
</plugin>
<plugin >
2015-08-19 11:49:00 -04:00
<groupId > org.codehaus.mojo</groupId>
<artifactId > cobertura-maven-plugin</artifactId>
<version > 2.7</version>
<configuration >
<skip > true</skip>
</configuration>
2014-03-24 08:32:28 -04:00
</plugin>
2014-04-24 12:25:47 -04:00
<plugin >
<groupId > org.codehaus.mojo</groupId>
<artifactId > license-maven-plugin</artifactId>
2019-07-05 09:38:31 -04:00
<version > 2.0.0</version>
2014-04-24 12:25:47 -04:00
<configuration >
2014-09-03 18:03:44 -04:00
<verbose > true</verbose>
2014-04-24 12:25:47 -04:00
<addSvnKeyWords > false</addSvnKeyWords>
2017-12-07 13:23:50 -05:00
<encoding > UTF-8</encoding>
2014-04-24 12:25:47 -04:00
</configuration>
</plugin>
2016-02-08 13:59:09 -05:00
<plugin >
<groupId > org.codehaus.mojo</groupId>
<artifactId > versions-maven-plugin</artifactId>
2018-12-22 20:13:03 -05:00
<version > 2.7</version>
2018-06-03 15:28:58 -04:00
<configuration >
<processDependencyManagementTransitive > false</processDependencyManagementTransitive>
</configuration>
2016-02-08 13:59:09 -05:00
</plugin>
2015-08-19 11:49:00 -04:00
<plugin >
<groupId > org.eclipse.jetty</groupId>
<artifactId > jetty-maven-plugin</artifactId>
2015-12-01 18:35:24 -05:00
<version > ${jetty_version}</version>
2015-08-19 11:49:00 -04:00
</plugin>
<plugin >
<groupId > org.eluder.coveralls</groupId>
<artifactId > coveralls-maven-plugin</artifactId>
2016-12-14 09:21:00 -05:00
<version > 4.3.0</version>
2015-08-19 11:49:00 -04:00
<configuration >
<coberturaReports >
</coberturaReports>
</configuration>
</plugin>
2016-06-14 22:03:24 -04:00
<plugin >
<groupId > org.jacoco</groupId>
2018-05-29 09:08:00 -04:00
<artifactId > jacoco-maven-plugin</artifactId>
2021-01-16 18:44:15 -05:00
<version > 0.8.6</version>
2019-09-30 09:30:39 -04:00
<configuration >
<excludes >
<exclude > ca/uhn/fhir/model/dstu2/**/*.class</exclude>
2019-10-03 07:21:53 -04:00
<exclude > ca/uhn/fhir/jpa/rp/r5/*.class</exclude>
<exclude > ca/uhn/fhir/jpa/rp/r4/*.class</exclude>
<exclude > ca/uhn/fhir/jpa/rp/dstu3/*.class</exclude>
<exclude > ca/uhn/fhir/jpa/rp/dstu2/*.class</exclude>
2019-09-30 09:30:39 -04:00
</excludes>
</configuration>
2016-06-14 22:03:24 -04:00
</plugin>
2015-08-19 11:49:00 -04:00
<!-- This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself. -->
2014-11-08 11:18:04 -05:00
<plugin >
<groupId > org.eclipse.m2e</groupId>
<artifactId > lifecycle-mapping</artifactId>
<version > 1.0.0</version>
<configuration >
<lifecycleMappingMetadata >
<pluginExecutions >
<pluginExecution >
<pluginExecutionFilter >
<groupId >
ca.uhn.hapi.fhir
</groupId>
<artifactId >
hapi-tinder-plugin
</artifactId>
<versionRange >
[0.8-SNAPSHOT,)
</versionRange>
<goals >
<goal >
generate-jparest-server
</goal>
</goals>
</pluginExecutionFilter>
<action >
<ignore > </ignore>
</action>
</pluginExecution>
<pluginExecution >
<pluginExecutionFilter >
<groupId >
org.apache.maven.plugins
</groupId>
<artifactId >
maven-antrun-plugin
</artifactId>
<versionRange >
[1.7,)
</versionRange>
<goals >
<goal > run</goal>
</goals>
</pluginExecutionFilter>
<action >
<ignore > </ignore>
</action>
</pluginExecution>
2019-10-22 11:55:55 -04:00
<!--
2015-03-26 11:57:07 -04:00
<pluginExecution >
<pluginExecutionFilter >
<groupId >
org.codehaus.mojo
</groupId>
<artifactId >
build-helper-maven-plugin
</artifactId>
<versionRange >
[1.9.1,)
</versionRange>
<goals >
<goal > add-source</goal>
</goals>
</pluginExecutionFilter>
<action >
<ignore > </ignore>
</action>
</pluginExecution>
2015-03-28 19:28:34 -04:00
<pluginExecution >
<pluginExecutionFilter >
<groupId >
org.apache.maven.plugins
</groupId>
<artifactId >
maven-compiler-plugin
</artifactId>
<versionRange >
[3.3,)
</versionRange>
<goals >
<goal > compile</goal>
<goal > testCompile</goal>
</goals>
</pluginExecutionFilter>
<action >
<ignore > </ignore>
</action>
</pluginExecution>
2017-02-04 16:09:20 -05:00
-->
2014-11-08 11:18:04 -05:00
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
2015-06-21 22:10:13 -04:00
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-checkstyle-plugin</artifactId>
2020-02-03 19:45:32 -05:00
<version > 3.1.0</version>
2015-06-21 22:10:13 -04:00
<dependencies >
<dependency >
<groupId > com.puppycrawl.tools</groupId>
<artifactId > checkstyle</artifactId>
2020-01-31 13:13:51 -05:00
<version > 8.29</version>
2015-06-21 22:10:13 -04:00
</dependency>
</dependencies>
<configuration >
2015-09-12 00:42:47 -04:00
<configLocation > ${project.basedir}/src/checkstyle/checkstyle.xml</configLocation>
2015-06-21 22:10:13 -04:00
</configuration>
</plugin>
2015-06-24 12:26:40 -04:00
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-install-plugin</artifactId>
<version > 2.5.2</version>
</plugin>
2014-02-17 17:58:32 -05:00
</plugins>
</pluginManagement>
2014-10-30 13:57:29 -04:00
<plugins >
2015-12-01 16:58:06 -05:00
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-enforcer-plugin</artifactId>
2018-07-29 18:20:09 -04:00
<version > 3.0.0-M2</version>
2015-12-01 16:58:06 -05:00
<executions >
<execution >
2018-07-29 18:20:09 -04:00
<id > enforce-maven</id>
2015-12-01 16:58:06 -05:00
<goals >
<goal > enforce</goal>
</goals>
2018-07-29 18:20:09 -04:00
<configuration >
<rules >
<requireMavenVersion >
2018-09-07 15:30:35 -04:00
<version > 3.3.9</version>
2018-07-29 18:20:09 -04:00
</requireMavenVersion>
<requireJavaVersion >
2020-04-17 09:28:44 -04:00
<version > 11</version>
2018-07-29 18:20:09 -04:00
<message >
2020-04-17 09:28:44 -04:00
HAPI FHIR is still targeting JDK 8 for published binaries, but we require JDK 11
to build and test this library.
2018-07-29 18:20:09 -04:00
</message>
</requireJavaVersion>
</rules>
</configuration>
2018-05-14 17:38:40 -04:00
</execution>
</executions>
2015-12-01 16:58:06 -05:00
</plugin>
2014-10-30 13:57:29 -04:00
<plugin >
<artifactId > maven-antrun-plugin</artifactId>
<inherited > false</inherited>
<executions >
<execution >
<id > copySubProjects</id>
<phase > site</phase>
<goals >
<goal > run</goal>
</goals>
<configuration >
<target >
<copy todir= "target/site/apidocs" >
2015-10-29 15:38:19 -04:00
<fileset dir= "hapi-fhir-base/target/site/apidocs" />
2014-10-30 13:57:29 -04:00
</copy>
2015-02-06 15:50:29 -05:00
<copy todir= "target/site/apidocs-dstu2" >
2015-10-29 15:38:19 -04:00
<fileset dir= "hapi-fhir-structures-dstu2/target/site/apidocs" />
2014-10-30 13:57:29 -04:00
</copy>
2016-02-03 16:56:32 -05:00
<copy todir= "target/site/apidocs-dstu3" >
<fileset dir= "hapi-fhir-structures-dstu3/target/site/apidocs" />
</copy>
2017-09-24 17:55:16 -04:00
<copy todir= "target/site/apidocs-r4" >
<fileset dir= "hapi-fhir-structures-r4/target/site/apidocs" />
</copy>
2019-08-06 17:30:31 -04:00
<copy todir= "target/site/apidocs-r5" >
<fileset dir= "hapi-fhir-structures-r5/target/site/apidocs" />
</copy>
2015-02-03 17:53:22 -05:00
<copy todir= "target/site/apidocs-jpaserver" >
2015-10-29 15:38:19 -04:00
<fileset dir= "hapi-fhir-jpaserver-base/target/site/apidocs" />
2015-02-03 17:53:22 -05:00
</copy>
2020-12-17 10:12:53 -05:00
<copy todir= "target/site/apidocs-jpaserver-mdm" >
<fileset dir= "hapi-fhir-jpaserver-mdm/target/site/apidocs" />
2020-05-22 15:03:20 -04:00
</copy>
2020-05-26 01:32:00 -04:00
<copy todir= "target/site/apidocs-jpaserver-batch" >
<fileset dir= "hapi-fhir-jpaserver-batch/target/site/apidocs" />
</copy>
2018-10-31 05:50:50 -04:00
<copy todir= "target/site/apidocs-client" >
<fileset dir= "hapi-fhir-client/target/site/apidocs" />
</copy>
<copy todir= "target/site/apidocs-server" >
<fileset dir= "hapi-fhir-server/target/site/apidocs" />
</copy>
2020-12-17 10:12:53 -05:00
<copy todir= "target/site/apidocs-server-mdm" >
<fileset dir= "hapi-fhir-server-mdm/target/site/apidocs" />
2020-05-22 15:03:20 -04:00
</copy>
2015-02-03 17:53:22 -05:00
<copy todir= "target/site/xref-jpaserver" >
2015-10-29 15:38:19 -04:00
<fileset dir= "hapi-fhir-jpaserver-base/target/site/xref" />
2015-02-03 17:53:22 -05:00
</copy>
2015-03-02 06:56:16 -05:00
<copy todir= "target/site/xref-base" >
2015-10-29 15:38:19 -04:00
<fileset dir= "hapi-fhir-base/target/site/xref" />
2015-06-21 12:22:14 -04:00
</copy>
2015-09-11 16:13:40 -04:00
<!-- <copy todir="target/site/cobertura"> <fileset dir="hapi - fhir - cobertura/target/site/cobertura" /> </copy> -->
2015-06-21 22:10:13 -04:00
<copy todir= "target/site" >
2015-10-29 15:38:19 -04:00
<fileset dir= "hapi-fhir-base/target/site" includes= "checkstyle.*" />
2015-06-21 22:10:13 -04:00
</copy>
<echo > Fixing Checkstyle Report</echo>
<replace dir= "target/site" summary= "true" >
2015-10-29 15:38:19 -04:00
<include name= "checkstyle.html" />
2015-06-21 22:10:13 -04:00
<replacetoken > "../../</replacetoken>
<replacevalue > "./</replacevalue>
</replace>
<replace dir= "target/site" summary= "true" >
2015-10-29 15:38:19 -04:00
<include name= "*.html" />
2018-03-28 06:15:28 -04:00
<replacetoken >
http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-responsive.min.css
</replacetoken>
2015-06-21 22:10:13 -04:00
<replacevalue > ./css/bootstrap-responsive.min.css</replacevalue>
</replace>
2016-04-13 08:09:51 -04:00
<replace dir= "target/site" summary= "true" >
<include name= "*.html" />
<replacetoken > http://netdna.bootstrapcd</replacetoken>
<replacevalue > https://netdna.bootstrapcd</replacevalue>
</replace>
<replace dir= "target/site" summary= "true" >
<include name= "*.html" />
2018-03-28 06:15:28 -04:00
<replacetoken > http://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css
</replacetoken>
<replacevalue > https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css
</replacevalue>
2016-04-13 08:09:51 -04:00
</replace>
<replace dir= "target/site" summary= "true" >
<include name= "*.html" />
<replacetoken > http://ajax.googleapis</replacetoken>
<replacevalue > https://ajax.googleapis</replacevalue>
</replace>
2016-05-22 08:44:35 -04:00
<replace dir= "target/site" summary= "true" >
<include name= "*.html" />
<replacetoken > \t</replacetoken>
2016-06-14 22:03:24 -04:00
<replacevalue >
</replacevalue>
2016-05-22 08:44:35 -04:00
</replace>
2015-06-21 22:10:13 -04:00
<replace dir= "target/site" summary= "true" >
2015-10-29 15:38:19 -04:00
<include name= "index.html" />
2015-06-21 22:10:13 -04:00
<replacetoken > <![CDATA[<h2 id="Welcome">Welcome</h2>]]> </replacetoken>
2018-12-28 11:42:21 -05:00
<replacevalue > < ![CDATA[
2015-06-21 22:10:13 -04:00
<div class= "span12" >
<div class= "pull-left" >
<a href= "./" id= "bannerLeft" > <img src= "images/hapi_fhir_banner.png" alt= '"' H A P I ' " ' /> </a>
</div>
<div class= "pull-right" >
<a href= "./" id= "bannerRight" > <img src= "images/hapi_fhir_banner_right.png" alt= '"' F H I R ' " ' /> </a>
</div>
</div>
2018-12-28 11:42:21 -05:00
<br clear= "both" />
]]></replacevalue>
2015-06-21 22:10:13 -04:00
</replace>
2015-08-19 11:49:00 -04:00
<!-- <replaceregexp file="target/site/checkstyle.html" byline="false" match="<ul class="breadcrumb.*?</ul>" replace="" flags="s"/> -->
2014-10-30 13:57:29 -04:00
</target>
</configuration>
</execution>
<execution >
<id > addSyntaxHighlighter</id>
<phase > site</phase>
<goals >
<goal > run</goal>
</goals>
<configuration >
<target >
2015-03-02 06:56:16 -05:00
<echo > Adding Fontawesome</echo>
<replace dir= "target/site" summary= "true" >
2015-10-29 15:38:19 -04:00
<include name= "*.html" />
2018-03-28 06:15:28 -04:00
<replacetoken >
<![CDATA[<a href="download.html" title="Download">Download</a>]]> </replacetoken>
<replacevalue >
<![CDATA[<a href="download.html" title="Download"><i class="fa fa-download"></i> Download</a>]]> </replacevalue>
2015-03-02 06:56:16 -05:00
</replace>
<replace dir= "target/site" summary= "true" >
2015-10-29 15:38:19 -04:00
<include name= "*.html" />
2018-03-28 06:15:28 -04:00
<replacetoken >
2021-01-01 15:07:23 -05:00
<![CDATA[<a href="https://github.com/hapifhir/hapi-fhir/" title="GitHub Project" class="externalLink">GitHub Project</a>]]> </replacetoken>
2018-03-28 06:15:28 -04:00
<replacevalue >
2021-01-01 15:07:23 -05:00
<![CDATA[<a href="https://github.com/hapifhir/hapi-fhir/" title="GitHub Project" class="externalLink"><i class="fa fa-github"></i> GitHub Project</a>]]> </replacevalue>
2015-03-02 06:56:16 -05:00
</replace>
<replace dir= "target/site" summary= "true" >
2015-10-29 15:38:19 -04:00
<include name= "*.html" />
2015-03-02 06:56:16 -05:00
<replacetoken > <![CDATA[data-toggle="dropdown">Test Servers <]]> </replacetoken>
2018-03-28 06:15:28 -04:00
<replacevalue >
<![CDATA[data-toggle="dropdown"><i class="fa fa-fire"></i> Test Servers <]]> </replacevalue>
2015-03-02 06:56:16 -05:00
</replace>
<replace dir= "target/site" summary= "true" >
2015-10-29 15:38:19 -04:00
<include name= "*.html" />
2015-03-02 06:56:16 -05:00
<replacetoken > <![CDATA[data-toggle="dropdown">Documentation <]]> </replacetoken>
2018-03-28 06:15:28 -04:00
<replacevalue >
<![CDATA[data-toggle="dropdown"><i class="fa fa-book"></i> Documentation <]]> </replacevalue>
2015-03-02 06:56:16 -05:00
</replace>
<replace dir= "target/site" summary= "true" >
2015-10-29 15:38:19 -04:00
<include name= "*.html" />
2015-03-02 06:56:16 -05:00
<replacetoken > <![CDATA[data-toggle="dropdown">Get Help <]]> </replacetoken>
2018-03-28 06:15:28 -04:00
<replacevalue >
<![CDATA[data-toggle="dropdown"><i class="fa fa-support"></i> Get Help <]]> </replacevalue>
2015-03-02 06:56:16 -05:00
</replace>
<echo > Changing Breadcrumbs</echo>
<replace dir= "target/site" summary= "true" >
2015-10-29 15:38:19 -04:00
<include name= "doc_*.html" />
2015-03-02 06:56:16 -05:00
<replacetoken > <![CDATA[<li class="divider">/</li>]]> </replacetoken>
<replacevalue > <![CDATA[<li class="divider"> /</li>
<li > <a href= "docindex.html" title= "Documentation" > Documentation</a> </li>
<li class= "divider" > /</li> ]]></replacevalue>
</replace>
2014-10-30 13:57:29 -04:00
<echo > Adding Syntax Highlighter</echo>
<replace dir= "target/site" summary= "true" >
<include name= "*.html" > </include>
<replacetoken > <![CDATA[</body>]]> </replacetoken>
<replacevalue > < ![CDATA[
<script type= "text/javascript" >
var elements = document.getElementsByClassName("source");
for (var i=0; i < elements.length ; i + + ) {
var pres = elements[i].getElementsByTagName("pre");
for (var j = 0; j < pres.length ; j + + ) {
var pre = pres[j];
2015-02-13 08:26:21 -05:00
if (pre.innerHTML.match(/^\s*\<\; /)) {
pre.className = 'brush: xml';
} else if (pre.innerHTML.match(/\/\*/)) {
2014-10-30 13:57:29 -04:00
pre.className = 'brush: java';
} else if (pre.innerHTML.match(/^\/\//)) {
pre.className = 'brush: java';
} else if (pre.innerHTML.match(/^\{/)) {
pre.className = 'brush: jscript';
} else if (pre.innerHTML.match(/^\#/)) {
pre.className = 'brush: bash';
} else if (pre.innerHTML.match(/\<\; \//)) {
pre.className = 'brush: xml';
} else {
pre.className = 'brush: java';
}
}
}
SyntaxHighlighter.all();
</script>
</body>
]]></replacevalue>
</replace>
</target>
</configuration>
</execution>
<execution >
<id > addAnalytics</id>
2015-07-15 08:37:56 -04:00
<phase > site</phase>
2014-10-30 13:57:29 -04:00
<configuration >
<target >
<echo > Adding Google analytics in target/site for < body> </echo>
<replace dir= "target/site" summary= "true" >
<include name= "**/*.html" > </include>
2015-10-29 15:38:19 -04:00
<replacefilter token= "#build#" value= "${label}" />
<replacefilter token= "#version#" value= "${project.version}" />
2014-10-30 13:57:29 -04:00
<replacetoken > <![CDATA[</body>]]> </replacetoken>
<replacevalue > < ![CDATA[
<script >
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-1395874-5', 'auto');
ga('require', 'displayfeatures');
ga('require', 'linkid', 'linkid.js');
ga('send', 'pageview');
</script>
</body >
]]></replacevalue>
</replace>
<echo > Adding Google analytics in target/site for < BODY> </echo>
<replace dir= "target/site" summary= "true" >
<include name= "**/*.html" > </include>
<replacetoken > <![CDATA[</BODY>]]> </replacetoken>
<replacevalue > < ![CDATA[
<script >
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-1395874-5', 'auto');
ga('require', 'displayfeatures');
ga('require', 'linkid', 'linkid.js');
ga('send', 'pageview');
</script>
</BODY >
]]></replacevalue>
</replace>
</target>
</configuration>
<goals >
<goal > run</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-scm-publish-plugin</artifactId>
2018-05-29 06:14:28 -04:00
<version > 3.0.0</version>
2014-10-30 13:57:29 -04:00
<inherited > false</inherited>
<configuration >
<checkoutDirectory > ${scmPubCheckoutDirectory}</checkoutDirectory>
<content > \${siteMainDirectory}</content>
<tryUpdate > true</tryUpdate>
<scmBranch > gh-pages</scmBranch>
2021-01-01 15:07:23 -05:00
<pubScmUrl > scm:git:git@github.com:hapifhir/hapi-fhir.git</pubScmUrl>
2014-10-30 13:57:29 -04:00
</configuration>
<executions >
<execution >
<id > scm-publish</id>
<phase > site-deploy</phase>
<goals >
<goal > publish-scm</goal>
</goals>
</execution>
</executions>
</plugin>
2019-12-15 19:11:27 -05:00
<plugin >
<groupId > org.jacoco</groupId>
<artifactId > jacoco-maven-plugin</artifactId>
<configuration >
<dumpOnExit > true</dumpOnExit>
</configuration>
<executions >
<execution >
<id > default-prepare-agent</id>
<goals >
<goal > prepare-agent</goal>
</goals>
</execution>
</executions>
</plugin>
2014-10-30 13:57:29 -04:00
</plugins>
2014-02-17 17:58:32 -05:00
</build>
2014-03-24 08:32:28 -04:00
2014-10-30 13:57:29 -04:00
<reporting >
<plugins >
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-changes-plugin</artifactId>
2016-12-14 09:21:00 -05:00
<version > 2.12.1</version>
2014-10-30 13:57:29 -04:00
<inherited > false</inherited>
<reportSets >
<reportSet >
<reports >
<report > changes-report</report>
</reports>
</reportSet>
</reportSets>
<configuration >
<feedType > atom_1.0</feedType>
<issueLinkTemplatePerSystem >
2021-01-01 15:07:23 -05:00
<default > https://github.com/hapifhir/hapi-fhir/issues/%ISSUE%</default>
2014-10-30 13:57:29 -04:00
</issueLinkTemplatePerSystem>
<escapeHTML > false</escapeHTML>
</configuration>
</plugin>
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-surefire-report-plugin</artifactId>
2016-01-15 18:02:20 -05:00
<version > 2.19.1</version>
2015-03-11 16:17:27 -04:00
<reportSets >
<reportSet >
<reports >
<report > failsafe-report-only</report>
</reports>
</reportSet>
</reportSets>
2014-10-30 13:57:29 -04:00
<configuration >
2015-06-21 22:10:13 -04:00
<reportsDirectories >
<reportDirectory > ${project.basedir}/hapi-fhir-base/target/surefire-reports/</reportDirectory>
2018-03-28 06:15:28 -04:00
<reportDirectory > ${project.basedir}/hapi-fhir-structures-dstu/target/surefire-reports/
</reportDirectory>
<reportDirectory > ${project.basedir}/hapi-fhir-structures-dstu2/target/surefire-reports/
</reportDirectory>
<reportDirectory > ${project.basedir}/hapi-fhir-jpaserver-base/target/surefire-reports/
</reportDirectory>
2015-06-21 22:10:13 -04:00
</reportsDirectories>
2014-10-30 13:57:29 -04:00
</configuration>
</plugin>
2018-12-28 11:42:21 -05:00
<plugin >
2014-10-30 13:57:29 -04:00
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-project-info-reports-plugin</artifactId>
2018-11-04 14:00:27 -05:00
<version > 3.0.0</version>
2014-10-30 13:57:29 -04:00
<inherited > false</inherited>
2018-12-28 11:42:21 -05:00
<!--
2014-10-30 13:57:29 -04:00
<reportSets >
<reportSet >
<reports >
2018-11-07 18:27:08 -05:00
<report > team</report>
<report > issue-management</report>
2014-10-30 13:57:29 -04:00
<report > license</report>
<report > scm</report>
</reports>
</reportSet>
</reportSets>
2018-12-28 11:42:21 -05:00
-->
2014-10-30 13:57:29 -04:00
</plugin>
2015-08-19 11:49:00 -04:00
<!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven - linkcheck - plugin</artifactId> <version>1.1</version> </plugin> -->
2014-10-30 13:57:29 -04:00
</plugins>
</reporting>
2014-04-24 07:24:27 -04:00
<profiles >
2015-07-13 10:31:02 -04:00
<profile >
<id > DIST</id>
2019-07-11 20:20:27 -04:00
<build >
<plugins >
<plugin >
<groupId > org.codehaus.mojo</groupId>
<artifactId > license-maven-plugin</artifactId>
<inherited > false</inherited>
<executions >
<execution >
<id > update-project-license</id>
<phase > package</phase>
<goals >
<goal > update-project-license</goal>
</goals>
<configuration >
<licenseName > apache_v2</licenseName>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
2015-07-13 10:31:02 -04:00
</profile>
2014-11-07 14:26:59 -05:00
<profile >
<id > ROOT</id>
2015-06-21 22:10:13 -04:00
<reporting >
<plugins >
</plugins>
</reporting>
2014-11-07 14:26:59 -05:00
<modules >
</modules>
2014-11-24 06:45:12 -05:00
<build >
<plugins >
2019-10-22 11:55:55 -04:00
<!-- <plugin> <artifactId>maven - assembly - plugin</artifactId> <version>${maven_assembly_plugin_version}</version> <executions> <execution> <phase>package</phase> <goals> <goal>single</goal> </goals>
2015-10-29 15:38:19 -04:00
<configuration > <attach > false</attach> <descriptors > <descriptor > ${project.basedir}/src/assembly/hapi-fhir-sample-projects.xml</descriptor> </descriptors> </configuration> </execution> </executions> </plugin> -->
2014-11-24 06:45:12 -05:00
</plugins>
</build>
2014-11-07 14:26:59 -05:00
</profile>
2014-04-24 07:24:27 -04:00
<profile >
<id > SIGN_ARTIFACTS</id>
<activation >
<property >
<name > gpg.passphrase</name>
</property>
</activation>
<build >
<plugins >
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-gpg-plugin</artifactId>
<executions >
<execution >
<id > sign-artifacts</id>
<phase > verify</phase>
<goals >
<goal > sign</goal>
</goals>
2019-08-07 10:43:30 -04:00
<configuration >
2019-10-22 11:55:55 -04:00
<!--
2019-08-07 10:43:30 -04:00
These arguments are needed for GPG 2.1+ per
https://stackoverflow.com/questions/53992950/maven-gpg-plugin-failing-with-inappropriate-ioctl-for-device-when-running-unde
-->
<gpgArguments >
<arg > --pinentry-mode</arg>
<arg > loopback</arg>
</gpgArguments>
</configuration>
2014-04-24 07:24:27 -04:00
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
2014-10-30 13:57:29 -04:00
<profile >
<id > ALLMODULES</id>
<activation >
<activeByDefault > true</activeByDefault>
</activation>
<modules >
2021-01-29 16:35:38 -05:00
<module > hapi-fhir-bom</module>
2014-10-30 13:57:29 -04:00
<module > hapi-deployable-pom</module>
<module > hapi-fhir-base</module>
2019-09-22 08:58:17 -04:00
<module > hapi-fhir-docs</module>
2019-06-13 16:15:29 -04:00
<module > hapi-fhir-test-utilities</module>
2020-05-22 15:03:20 -04:00
<module > hapi-fhir-jpaserver-test-utilities</module>
2016-06-15 17:34:50 -04:00
<module > hapi-tinder-plugin</module>
<module > hapi-tinder-test</module>
2017-08-13 14:39:47 -04:00
<module > hapi-fhir-client</module>
<module > hapi-fhir-server</module>
2020-12-17 10:12:53 -05:00
<module > hapi-fhir-server-mdm</module>
2019-07-14 10:16:40 -04:00
<module > hapi-fhir-converter</module>
2017-08-13 14:39:47 -04:00
<module > hapi-fhir-validation</module>
2016-11-22 06:33:20 -05:00
<!-- <module>hapi - fhir - narrativegenerator</module> -->
2016-06-15 17:34:50 -04:00
<module > hapi-fhir-structures-dstu2</module>
<module > hapi-fhir-structures-hl7org-dstu2</module>
2017-08-13 14:39:47 -04:00
<module > hapi-fhir-validation-resources-dstu2</module>
2016-12-10 19:51:25 -05:00
<module > hapi-fhir-structures-dstu2.1</module>
2017-08-13 14:39:47 -04:00
<module > hapi-fhir-validation-resources-dstu2.1</module>
2016-06-15 17:34:50 -04:00
<module > hapi-fhir-structures-dstu3</module>
2017-08-13 14:39:47 -04:00
<module > hapi-fhir-validation-resources-dstu3</module>
<module > hapi-fhir-structures-r4</module>
<module > hapi-fhir-validation-resources-r4</module>
2019-08-06 17:30:31 -04:00
<module > hapi-fhir-structures-r5</module>
<module > hapi-fhir-validation-resources-r5</module>
2020-04-02 20:30:19 -04:00
<module > hapi-fhir-jpaserver-api</module>
2021-01-29 16:35:38 -05:00
<module > hapi-fhir-jpaserver-cql</module>
2018-11-30 17:19:16 -05:00
<module > hapi-fhir-jpaserver-model</module>
<module > hapi-fhir-jpaserver-searchparam</module>
<module > hapi-fhir-jpaserver-subscription</module>
2016-06-15 17:34:50 -04:00
<module > hapi-fhir-jaxrsserver-base</module>
<module > hapi-fhir-jaxrsserver-example</module>
2020-05-26 01:32:00 -04:00
<module > hapi-fhir-jpaserver-batch</module>
2020-06-24 13:11:30 -04:00
<module > hapi-fhir-jpaserver-base</module>
2018-08-23 05:24:13 -04:00
<module > hapi-fhir-jpaserver-migrate</module>
Replacing Hibernate Search 5 with Hibernate Search 6 (#2190)
* Beginning work on converting to hibernate search 6
* replace all out of date properties
* replace all POM references to old versions
* remove the shaded ES jars as HS6 supports 7.9
* Convert "Bridges" to RoutingBinder and RoutingBridge
* Modernize all indexing annotations
* Begin refactoring of search queries (wip)
* Fix spatial API changes, work on BaseTermReadSvcImpl
* Most of the way through the various filter property conversions
* Finished i think with BaseTermReadSvcImpl
* Compiling, but definitely broken
* Start test compilation failures
* All tests compiling (i think)
* remove suggest keywords operation
* Fix bootstrap errors, still have to deal with transient fields
* Rollback CR
* More refactoring, got IDs baked back into docs
* Fix coord util, fix a few more fields which require projection
* merge fixes
* begin refactor of valuesetexpansion tests
* fix another test
* Update tests
* remove todos, add TestContainers
* Fix descendant in
* Add testcontainers, fix another test
* fix more tests, replace embedded es
* Rip out embedded elastic, replace with TestContainer
* merge conflicts for new analyzers
* Bump to CR2 for hibernate search 6. Add forgotten CLI dep. Add backwards compatible codecs
* Remove dead deps, update testcontainer
* Remove java-hamcrest
* Pull asserts up, refactor tests to pass in RP tests
* Update V2 check
* Remove suggest keyword tests
* Split line for testing
* Fix perhaps one of the dumbest programming mistakes in my career so far
* Refactor tests which no longer rely on a strict known order
* Fix up test config, disable log test temporarily
* Remove log4j from being transitively pulled in. re-enable test
* Update log4j exclusions with new bridge. Update test to check for core class
* Move dependency to root pom in dep management section
* Update changelog, add changelog for HS6 with ES requirements. Remove dead comment
* update testst, remove todos
* Add hibernate props provider method, add elastic regexp query
* Add todo for high level client builder
* Modify ElasticsearchRestClientFactory to support HTTPS hosts
* Remove protocol extraction from rest url
* do we even need to index this...?
* remove purge of non-indexed resources
* Add longer timeout to testcontainers
* Add task to add docker CLI to azure pipeline via task, for testcontainers
* WIP remove this
* Dont update version
* Add test for duplicate termconcepts
* Use real hibernate ORM methods
* merge issues
* Add partitionsettigns bean to match master
* Trying to debug testcontainers on azure...
* Trying to debug testcontainers on azure...
* Run even on previous failure
* Fix testcontainer port binds
* Add full text logs attaching, and test reporting
* I love yaml
* Remove comment
* Refactor delta remove to not do a once-over traversal and flatten all children pre-delete. Resolves transaction commit boundary issue
* Modify TX beheaviour
* wip
* Rework to use config and mocked beans for partition-aware lastN
* rework to not use beans and just inject vars i need for test, keps test envs cleaner
* update azure pipeline to only copy test results
* Remove erroneous publish
* Always get test logs
* Make it so indexing works,
* Add todos
* revert deleteByPid
* Work on test fixes
* Test fixes
* Test fixes
* Another test fix
* Test fix
* Work on tests
* Test fixes
* All tests passing locally
* Fix test failure
* FIx build error
* Rename usages of HibernateDialectProvider -> HibernatePropertiesProvider
* Update ngram of token filters
* Tidying
* subvert the purpose of hibernate elastic props builder to inject template
* dead space
* Rename changed class
Co-authored-by: jamesagnew <jamesagnew@gmail.com>
2021-01-05 17:56:59 -05:00
<module > hapi-fhir-jpaserver-mdm</module>
2016-06-15 17:34:50 -04:00
<module > restful-server-example</module>
<module > hapi-fhir-testpage-overlay</module>
<module > hapi-fhir-jpaserver-uhnfhirtest</module>
2016-08-02 20:31:05 -04:00
<module > hapi-fhir-client-okhttp</module>
2016-06-15 17:34:50 -04:00
<module > hapi-fhir-android</module>
<module > hapi-fhir-cli</module>
<module > hapi-fhir-dist</module>
2019-06-09 23:51:41 -04:00
<!-- <module>osgi</module> -->
2019-04-24 14:32:30 -04:00
<!-- <module>osgi/hapi - fhir - karaf - features</module>
<module > osgi/hapi-fhir-karaf-integration-tests</module> -->
2019-06-27 16:35:29 -04:00
<!--
2017-01-29 22:55:22 -05:00
<module > example-projects/hapi-fhir-base-example-embedded-ws</module>
<module > example-projects/hapi-fhir-standalone-overlay-example</module>
2018-03-15 06:48:41 -04:00
<module > example-projects/hapi-fhir-jpaserver-cds-example</module>
2018-03-23 06:35:53 -04:00
<module > example-projects/hapi-fhir-jpaserver-dynamic</module>
2018-05-28 06:01:13 -04:00
<module > example-projects/hapi-fhir-jpaserver-example-postgres</module>
2019-06-27 16:35:29 -04:00
-->
2019-10-22 11:55:55 -04:00
<module > tests/hapi-fhir-base-test-jaxrsserver-kotlin</module>
2018-03-23 07:15:22 -04:00
<module > tests/hapi-fhir-base-test-mindeps-client</module>
<module > tests/hapi-fhir-base-test-mindeps-server</module>
2017-08-22 06:57:00 -04:00
<module > hapi-fhir-spring-boot</module>
2017-08-13 14:39:47 -04:00
<!-- <module>hapi - fhir - osgi - core</module> -->
2014-10-30 13:57:29 -04:00
</modules>
</profile>
2018-03-30 08:54:04 -04:00
<profile >
<id > JACOCO</id>
<modules >
<module > hapi-fhir-jacoco</module>
</modules>
2019-11-23 13:51:02 -05:00
<build >
<plugins >
<plugin >
<groupId > org.jacoco</groupId>
<artifactId > jacoco-maven-plugin</artifactId>
<configuration >
<dumpOnExit > true</dumpOnExit>
</configuration>
<executions >
<execution >
<id > default-prepare-agent</id>
<goals >
<goal > prepare-agent</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile >
<id > CI</id>
<properties >
2020-10-09 07:52:46 -04:00
<surefire_jvm_args > -Dspring.test.context.cache.maxSize=2 -Dfile.encoding=UTF-8 -Xmx2648m -XX:TieredStopAtLevel=1 -Xverify:none -Dfile.encoding=UTF-8 -Xss128M -XX:MetaspaceSize=512M -XX:MaxMetaspaceSize=2048M</surefire_jvm_args>
2019-11-23 13:51:02 -05:00
</properties>
2020-02-09 08:39:46 -05:00
<build >
<plugins >
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-checkstyle-plugin</artifactId>
<executions >
<execution >
<id > validate</id>
<phase > generate-sources</phase>
<configuration >
<configLocation > src/checkstyle/checkstyle_config_nofixmes.xml</configLocation>
<encoding > UTF-8</encoding>
<consoleOutput > true</consoleOutput>
<failOnViolation > true</failOnViolation>
<failsOnError > false</failsOnError>
</configuration>
<goals >
<goal > check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
2018-03-30 08:54:04 -04:00
</profile>
2015-06-20 14:23:34 -04:00
<profile >
2016-08-05 14:06:24 -04:00
<id > NOPARALLEL</id>
<build >
<plugins >
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-surefire-plugin</artifactId>
<configuration >
<forkCount > 1</forkCount>
</configuration>
</plugin>
</plugins>
</build>
2015-06-20 14:23:34 -04:00
</profile>
2017-06-19 13:56:38 -04:00
<profile >
<id > MINPARALLEL</id>
<build >
<plugins >
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-surefire-plugin</artifactId>
<configuration >
<forkCount > 2</forkCount>
</configuration>
</plugin>
</plugins>
</build>
</profile>
2017-02-04 16:31:18 -05:00
<profile >
2018-05-30 09:07:50 -04:00
<id > ERRORPRONE</id>
2017-02-04 16:31:18 -05:00
<build >
<plugins >
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-compiler-plugin</artifactId>
<configuration >
2018-12-08 18:22:17 -05:00
<compilerArgs >
<arg > -XDcompilePolicy=simple</arg>
<arg > -Xplugin:ErrorProne</arg>
</compilerArgs>
<annotationProcessorPaths >
<path >
<groupId > com.google.errorprone</groupId>
<artifactId > error_prone_core</artifactId>
2019-01-09 21:20:46 -05:00
<version > ${error_prone_core_version}</version>
2018-12-08 18:22:17 -05:00
</path>
</annotationProcessorPaths>
2017-02-04 16:31:18 -05:00
</configuration>
</plugin>
</plugins>
</build>
</profile>
2014-04-24 07:24:27 -04:00
</profiles>
2014-02-17 17:58:32 -05:00
</project>