Skip to content

Commit 2c757fd

Browse files
committed
suggestions from talk post
1 parent 8bc7331 commit 2c757fd

File tree

3 files changed

+66
-1
lines changed

3 files changed

+66
-1
lines changed

api-2.6/pom.xml

+61
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,25 @@
1717

1818
<properties>
1919
<openmrsPlatformVersion>${openmrsVersion2.6}</openmrsPlatformVersion>
20+
<fhir2Version>1.11.0</fhir2Version>
21+
<datafilterVersion>2.2.0</datafilterVersion>
2022
</properties>
2123

2224
<dependencies>
25+
<dependency>
26+
<groupId>org.openmrs.test</groupId>
27+
<artifactId>openmrs-test</artifactId>
28+
<type>pom</type>
29+
<version>${openmrsPlatformVersion}</version>
30+
<scope>test</scope>
31+
<exclusions>
32+
<exclusion>
33+
<groupId>org.powermock</groupId>
34+
<artifactId>powermock-api-mockito2</artifactId>
35+
</exclusion>
36+
</exclusions>
37+
</dependency>
38+
2339
<dependency>
2440
<groupId>${project.parent.groupId}</groupId>
2541
<artifactId>${project.parent.artifactId}-api</artifactId>
@@ -41,6 +57,51 @@
4157
<version>${project.parent.version}</version>
4258
<scope>provided</scope>
4359
</dependency>
60+
61+
<dependency>
62+
<groupId>${project.parent.groupId}</groupId>
63+
<artifactId>${project.parent.artifactId}-api-2.3</artifactId>
64+
<version>${project.parent.version}</version>
65+
<scope>provided</scope>
66+
</dependency>
67+
68+
<dependency>
69+
<groupId>${project.parent.groupId}</groupId>
70+
<artifactId>${project.parent.artifactId}-api-2.3</artifactId>
71+
<version>${project.parent.version}</version>
72+
<scope>test</scope>
73+
<type>test-jar</type>
74+
</dependency>
75+
76+
<dependency>
77+
<groupId>${project.parent.groupId}</groupId>
78+
<artifactId>${project.parent.artifactId}-api-2.2</artifactId>
79+
<version>${project.parent.version}</version>
80+
<scope>provided</scope>
81+
</dependency>
82+
83+
<dependency>
84+
<groupId>${project.parent.groupId}</groupId>
85+
<artifactId>${project.parent.artifactId}-api-2.2</artifactId>
86+
<version>${project.parent.version}</version>
87+
<scope>test</scope>
88+
<type>test-jar</type>
89+
</dependency>
90+
91+
<dependency>
92+
<groupId>org.openmrs.module</groupId>
93+
<artifactId>fhir2-api-2.6</artifactId>
94+
<version>${fhir2Version}</version>
95+
<scope>provided</scope>
96+
</dependency>
97+
98+
<dependency>
99+
<groupId>org.openmrs.module</groupId>
100+
<artifactId>datafilter-api</artifactId>
101+
<version>${datafilterVersion}</version>
102+
<scope>provided</scope>
103+
</dependency>
104+
44105
</dependencies>
45106

46107
</project>

omod/src/main/resources/config.xml

+4
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@
2323
<path>/lib/initializer-api-2.5-${project.version}.jar</path>
2424
<openmrsVersion>2.5.* - 9.*</openmrsVersion>
2525
</conditionalResource>
26+
<conditionalResource>
27+
<path>/lib/initializer-api-2.6-${project.version}.jar</path>
28+
<openmrsVersion>2.6.* - 9.*</openmrsVersion>
29+
</conditionalResource>
2630
</conditionalResources>
2731

2832
<aware_of_modules>

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
<metadatasharingVersion>1.2.2</metadatasharingVersion>
7272
<metadatamappingVersion>1.3.4</metadatamappingVersion>
7373
<openconceptlabVersion>1.2.9</openconceptlabVersion>
74-
<fhir2Version>1.11.0</fhir2Version>
74+
<fhir2Version>1.6.0</fhir2Version>
7575

7676
<!-- Modules compatibility > Core 2.3.0 -->
7777
<datafilterVersion>1.0.0</datafilterVersion>

0 commit comments

Comments
 (0)