|
1 |
| -<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
2 | 2 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
3 | 3 | <modelVersion>4.0.0</modelVersion>
|
4 | 4 |
|
|
11 | 11 | <parent>
|
12 | 12 | <groupId>ca.uhn.hapi.fhir</groupId>
|
13 | 13 | <artifactId>hapi-fhir</artifactId>
|
14 |
| - <version>5.0.2</version> |
| 14 | + <version>5.1.0</version> |
15 | 15 | </parent>
|
16 | 16 |
|
17 | 17 | <artifactId>hapi-fhir-jpaserver-starter</artifactId>
|
|
20 | 20 | <maven>3.5.0</maven>
|
21 | 21 | </prerequisites>
|
22 | 22 |
|
| 23 | + <packaging>war</packaging> |
| 24 | + |
| 25 | + <name>HAPI FHIR JPA Server - Starter Project</name> |
| 26 | + |
| 27 | + <repositories> |
| 28 | + <repository> |
| 29 | + <id>oss-snapshots</id> |
| 30 | + <snapshots> |
| 31 | + <enabled>true</enabled> |
| 32 | + </snapshots> |
| 33 | + <url>https://oss.sonatype.org/content/repositories/snapshots/</url> |
| 34 | + </repository> |
| 35 | + </repositories> |
| 36 | + |
23 | 37 | <dependencies>
|
24 | 38 | <dependency>
|
25 | 39 | <groupId>org.eclipse.jetty.websocket</groupId>
|
|
84 | 98 | </exclusion>
|
85 | 99 | </exclusions>
|
86 | 100 | </dependency>
|
87 |
| - |
| 101 | + <!-- This dependency includes the JPA EMPI Server --> |
| 102 | + <dependency> |
| 103 | + <groupId>ca.uhn.hapi.fhir</groupId> |
| 104 | + <artifactId>hapi-fhir-jpaserver-empi</artifactId> |
| 105 | + <version>${project.version}</version> |
| 106 | + </dependency> |
88 | 107 | <!-- This dependency is used for the "FHIR Tester" web app overlay -->
|
89 | 108 | <dependency>
|
90 | 109 | <groupId>ca.uhn.hapi.fhir</groupId>
|
|
249 | 268 | <scope>test</scope>
|
250 | 269 | </dependency>
|
251 | 270 |
|
| 271 | + <dependency> |
| 272 | + <groupId>org.awaitility</groupId> |
| 273 | + <artifactId>awaitility</artifactId> |
| 274 | + <version>4.0.0-rc1</version> |
| 275 | + <scope>test</scope> |
| 276 | + </dependency> |
252 | 277 |
|
253 |
| - </dependencies> |
254 |
| - |
255 |
| - <packaging>war</packaging> |
256 |
| - |
257 |
| - <name>HAPI FHIR JPA Server - Starter Project</name> |
| 278 | + <!-- TODO: remove this and migrate to JU5 --> |
| 279 | + <dependency> |
| 280 | + <groupId>junit</groupId> |
| 281 | + <artifactId>junit</artifactId> |
| 282 | + <version>4.12</version> |
| 283 | + <scope>test</scope> |
| 284 | + </dependency> |
258 | 285 |
|
259 |
| - <repositories> |
260 |
| - <repository> |
261 |
| - <id>oss-snapshots</id> |
262 |
| - <snapshots> |
263 |
| - <enabled>false</enabled> |
264 |
| - </snapshots> |
265 |
| - <url>https://oss.sonatype.org/content/repositories/snapshots/</url> |
266 |
| - </repository> |
267 |
| - </repositories> |
| 286 | + </dependencies> |
268 | 287 |
|
269 | 288 | <build>
|
270 | 289 |
|
|
276 | 295 | <plugin>
|
277 | 296 | <groupId>org.eclipse.jetty</groupId>
|
278 | 297 | <artifactId>jetty-maven-plugin</artifactId>
|
279 |
| - <version>${jetty_version}</version> |
| 298 | + <version>${jetty_version}</version> |
280 | 299 | <configuration>
|
281 | 300 | <webApp>
|
282 | 301 | <contextPath>/hapi-fhir-jpaserver</contextPath>
|
|
421 | 440 | <ignoredResourcePatterns>
|
422 | 441 | <ignoredResourcePattern>.*\.txt$</ignoredResourcePattern>
|
423 | 442 | <ignoredResourcePattern>.*\.html$</ignoredResourcePattern>
|
| 443 | + <ignoredResourcePattern>config/favicon.ico</ignoredResourcePattern> |
424 | 444 | </ignoredResourcePatterns>
|
425 | 445 | </configuration>
|
426 | 446 | </plugin>
|
|
0 commit comments