Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HAPI FHIR Dependency Bumps #5576

Merged
merged 28 commits into from
Jan 14, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
1691b50
HAPI FHIR Dependency Bumps
jamesagnew Jan 2, 2024
6d34af6
Hibernate search 6
jamesagnew Jan 2, 2024
284f7db
Dep bumps
jamesagnew Jan 2, 2024
76b9de5
Bump mockito
jamesagnew Jan 3, 2024
b50d736
Fix memory leak
jamesagnew Jan 3, 2024
fc9c32b
Test cleanup
jamesagnew Jan 3, 2024
8f82c60
Test fix
jamesagnew Jan 3, 2024
c57faa2
Test fixes
jamesagnew Jan 4, 2024
6eb812f
Test fix
jamesagnew Jan 4, 2024
ab19b08
Test fix
jamesagnew Jan 4, 2024
20daf25
Test fix
jamesagnew Jan 4, 2024
ac8f83c
Test fix
jamesagnew Jan 4, 2024
9cbb6e7
Prepare to try and rework max clauses
jamesagnew Jan 5, 2024
00278d1
Refactor large VS expansion
jamesagnew Jan 5, 2024
80e9c57
Spotless
jamesagnew Jan 5, 2024
47c9bf8
Test fix
jamesagnew Jan 5, 2024
0f22b5a
Merge branch 'ja_20240102_dep_bumps' of github.com:hapifhir/hapi-fhir…
jamesagnew Jan 5, 2024
cb81e27
Version bump
jamesagnew Jan 5, 2024
dad66f7
Merge branch 'master' into ja_20240102_dep_bumps
jamesagnew Jan 5, 2024
d79b6fa
Test fixes
jamesagnew Jan 5, 2024
5777652
Bump maven container
jamesagnew Jan 7, 2024
b80f122
Build fix
jamesagnew Jan 7, 2024
fda79e3
Add license headers
jamesagnew Jan 8, 2024
d7b900f
Merge branch 'master' into ja_20240102_dep_bumps
jamesagnew Jan 9, 2024
296e49a
Merge branch 'ja_20240102_dep_bumps' of github.com:jamesagnew/hapi-fh…
jamesagnew Jan 9, 2024
28e7ad6
Merge branch 'master' into ja_20240102_dep_bumps
jamesagnew Jan 12, 2024
f328f91
Version bump
jamesagnew Jan 12, 2024
7046e0c
License headers
jamesagnew Jan 12, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Hibernate search 6
  • Loading branch information
jamesagnew committed Jan 2, 2024
commit 6d34af6de8581c6ab7829cf268c808e8e961ab55
2 changes: 1 addition & 1 deletion hapi-fhir-jpa/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
</dependency>
<dependency>
<groupId>org.hibernate.search</groupId>
<artifactId>hibernate-search-mapper-orm-orm6</artifactId>
<artifactId>hibernate-search-mapper-orm</artifactId>
<exclusions>
<exclusion>
<groupId>org.apache.logging.log4j</groupId>
Expand Down
2 changes: 1 addition & 1 deletion hapi-fhir-jpaserver-model/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
</dependency>
<dependency>
<groupId>org.hibernate.search</groupId>
<artifactId>hibernate-search-mapper-orm-orm6</artifactId>
<artifactId>hibernate-search-mapper-orm</artifactId>
</dependency>
<dependency>
<groupId>org.hibernate.search</groupId>
Expand Down
2 changes: 1 addition & 1 deletion hapi-fhir-jpaserver-searchparam/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@
</dependency>
<dependency>
<groupId>org.hibernate.search</groupId>
<artifactId>hibernate-search-mapper-orm-orm6</artifactId>
<artifactId>hibernate-search-mapper-orm</artifactId>
</dependency>
<dependency>
<groupId>org.jscience</groupId>
Expand Down
2 changes: 1 addition & 1 deletion hapi-fhir-storage/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@

<dependency>
<groupId>org.hibernate.search</groupId>
<artifactId>hibernate-search-mapper-orm-orm6</artifactId>
<artifactId>hibernate-search-mapper-orm</artifactId>
</dependency>
<dependency>
<groupId>org.hibernate.search</groupId>
Expand Down
2 changes: 1 addition & 1 deletion hapi-fhir-test-utilities/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
<!-- Hibernate -->
<dependency>
<groupId>org.hibernate.search</groupId>
<artifactId>hibernate-search-mapper-orm-orm6</artifactId>
<artifactId>hibernate-search-mapper-orm</artifactId>
</dependency>
<dependency>
<groupId>org.hibernate.validator</groupId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1893,7 +1893,7 @@
</dependency>
<dependency>
<groupId>org.hibernate.search</groupId>
<artifactId>hibernate-search-mapper-orm-orm6</artifactId>
<artifactId>hibernate-search-mapper-orm</artifactId>
<version>${hibernate_search_version}</version>
<exclusions>
<exclusion>
Expand Down
Loading