Renamed spring-boot-ups -> spring-boot-starter

This commit is contained in:
Phillip Webb
2013-07-30 16:20:36 -07:00
parent 2f0a96c986
commit 3bb79db579
35 changed files with 104 additions and 104 deletions

View File

@@ -17,9 +17,9 @@ repositories {
}
dependencies {
compile("org.springframework.boot:spring-boot-up:0.5.0.BUILD-SNAPSHOT")
compile("org.springframework.boot:spring-boot-starter:0.5.0.BUILD-SNAPSHOT")
compile("org.springframework:spring-webmvc:4.0.0.BUILD-SNAPSHOT")
providedRuntime("org.springframework.boot:spring-boot-up-tomcat:0.5.0.BUILD-SNAPSHOT")
providedRuntime("org.springframework.boot:spring-boot-starter-tomcat:0.5.0.BUILD-SNAPSHOT")
providedRuntime("org.apache.tomcat.embed:tomcat-embed-jasper:7.0.42")
testCompile("junit:junit:4.11")
}

View File

@@ -16,7 +16,7 @@
<!-- Compile -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>spring-boot-up</artifactId>
<artifactId>spring-boot-starter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
@@ -26,7 +26,7 @@
<!-- Provided (for embedded war support) -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>spring-boot-up-tomcat</artifactId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>