Try to avoid use of Apache maven repo which is causing Azure CI failures

This commit is contained in:
James Agnew 2020-01-12 20:41:38 +08:00
parent 3ac4172bc4
commit d223bbe354
1 changed files with 6 additions and 0 deletions

View File

@ -18,6 +18,7 @@
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId> <artifactId>spring-boot-autoconfigure</artifactId>
<version>${spring_boot_version}</version>
</dependency> </dependency>
<!-- Optional dependencies --> <!-- Optional dependencies -->
@ -68,6 +69,7 @@
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId> <artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional> <optional>true</optional>
<version>${spring_boot_version}</version>
</dependency> </dependency>
<!-- Test dependencies --> <!-- Test dependencies -->
@ -95,6 +97,7 @@
<groupId>org.slf4j</groupId> <groupId>org.slf4j</groupId>
<artifactId>log4j-over-slf4j</artifactId> <artifactId>log4j-over-slf4j</artifactId>
<scope>test</scope> <scope>test</scope>
<version>1.7.30</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>ca.uhn.hapi.fhir</groupId> <groupId>ca.uhn.hapi.fhir</groupId>
@ -110,6 +113,7 @@
</dependency> </dependency>
</dependencies> </dependencies>
<!--
<dependencyManagement> <dependencyManagement>
<dependencies> <dependencies>
<dependency> <dependency>
@ -118,9 +122,11 @@
<version>${spring_boot_version}</version> <version>${spring_boot_version}</version>
<type>pom</type> <type>pom</type>
<scope>import</scope> <scope>import</scope>
<optional>true</optional>
</dependency> </dependency>
</dependencies> </dependencies>
</dependencyManagement> </dependencyManagement>
-->
<build> <build>
<plugins> <plugins>