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

(chore) O3-2460: Upgrade appointments and queues to latest snapshots and add teleconsultation module #750

Merged
merged 1 commit into from
Oct 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 2 additions & 0 deletions distro/distro.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ omod.attachments=${attachments.version}
omod.queue=${queue.version}
omod.appointments=${appointments.version}
omod.appointments.groupId=org.bahmni.module
omod.teleconsultation=${teleconsultation.version}
omod.teleconsultation.groupId=org.bahmni.module
omod.cohort=${cohort.version}
omod.reporting=${reporting.version}
omod.reportingrest=${reportingrest.version}
Expand Down
11 changes: 9 additions & 2 deletions distro/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,9 @@
<owa.version>1.14.0</owa.version>
<attachments.version>3.0.0</attachments.version>
<referencedemodata.version>2.4.0-SNAPSHOT</referencedemodata.version>
<queue.version>1.0.0-alpha.1</queue.version>
<appointments.version>1.6.0</appointments.version>
<queue.version>1.0.0-SNAPSHOT</queue.version>
<appointments.version>2.0.0-SNAPSHOT</appointments.version>
<teleconsultation.version>2.0.0-SNAPSHOT</teleconsultation.version>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this unavoidable? Ugh...

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hopefully temporary, there is some discussion with the Bahmni team to try to transition this to an aware_of dependency. If you have opinions about that would be good to weigh in.

<cohort.version>3.5.0-SNAPSHOT</cohort.version>
<reporting.version>1.25.0</reporting.version>
<reportingrest.version>1.14.0</reportingrest.version>
Expand Down Expand Up @@ -145,6 +146,12 @@
<version>${appointments.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.bahmni.module</groupId>
<artifactId>teleconsultation-omod</artifactId>
<version>${teleconsultation.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.openmrs.module</groupId>
<artifactId>cohort-omod</artifactId>
Expand Down
Loading