Browse Source

Fix springloaded co-ordinates

Apparently springloaded 1.1.5 was released to Maven Central with a
different groupId than to repo.spring.io. It would have worked in
milestones because the repository was declared.

See gh-648
pull/653/head
Dave Syer 12 years ago
parent
commit
b8b883de31
  1. 2
      spring-boot-samples/spring-boot-sample-web-ui/build.gradle
  2. 2
      spring-boot-samples/spring-boot-sample-web-ui/pom.xml

2
spring-boot-samples/spring-boot-sample-web-ui/build.gradle

@ -13,7 +13,7 @@ buildscript { @@ -13,7 +13,7 @@ buildscript {
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
classpath("org.springsource.loaded:springloaded:${springLoadedVersion}")
classpath("org.springframework:springloaded:${springLoadedVersion}")
}
}

2
spring-boot-samples/spring-boot-sample-web-ui/pom.xml

@ -40,7 +40,7 @@ @@ -40,7 +40,7 @@
<artifactId>spring-boot-maven-plugin</artifactId>
<dependencies>
<dependency>
<groupId>org.springsource.loaded</groupId>
<groupId>org.springframework</groupId>
<artifactId>springloaded</artifactId>
<version>1.1.5.RELEASE</version>
</dependency>

Loading…
Cancel
Save