Browse Source

Remove Web depedency from Freemarker starter

Now that Spring Boot supports Freemarker for both Spring MVC and Spring
WebFlux, the dedicated starter should not pull the Web starter
transitively and let developers manually choose the web stack.

Closes gh-11246
pull/11262/head
Brian Clozel 8 years ago
parent
commit
eec7a8f075
  1. 9
      spring-boot-project/spring-boot-starters/spring-boot-starter-freemarker/pom.xml
  2. 4
      spring-boot-samples/spring-boot-sample-actuator-custom-security/pom.xml
  3. 4
      spring-boot-samples/spring-boot-sample-actuator-ui/pom.xml
  4. 4
      spring-boot-samples/spring-boot-sample-jpa/pom.xml
  5. 4
      spring-boot-samples/spring-boot-sample-web-freemarker/pom.xml

9
spring-boot-project/spring-boot-starters/spring-boot-starter-freemarker/pom.xml

@ -18,10 +18,6 @@ @@ -18,10 +18,6 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.freemarker</groupId>
<artifactId>freemarker</artifactId>
@ -32,7 +28,10 @@ @@ -32,7 +28,10 @@
</dependency>
</dependencies>
<build>
<plugins>
<plugins><dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-freemarker</artifactId>
</dependency>
<plugin>
<groupId>org.basepom.maven</groupId>
<artifactId>duplicate-finder-maven-plugin</artifactId>

4
spring-boot-samples/spring-boot-sample-actuator-custom-security/pom.xml

@ -16,6 +16,10 @@ @@ -16,6 +16,10 @@
</properties>
<dependencies>
<!-- Compile -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>

4
spring-boot-samples/spring-boot-sample-actuator-ui/pom.xml

@ -20,6 +20,10 @@ @@ -20,6 +20,10 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-freemarker</artifactId>

4
spring-boot-samples/spring-boot-sample-jpa/pom.xml

@ -16,6 +16,10 @@ @@ -16,6 +16,10 @@
</properties>
<dependencies>
<!-- Compile -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-freemarker</artifactId>

4
spring-boot-samples/spring-boot-sample-web-freemarker/pom.xml

@ -17,6 +17,10 @@ @@ -17,6 +17,10 @@
</properties>
<dependencies>
<!-- Compile -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-freemarker</artifactId>

Loading…
Cancel
Save