Browse Source

Rename `spring-boot-junit-runners` to `spring-boot-test-support`

Closes gh-7421
pull/7902/head
Stephane Nicoll 9 years ago
parent
commit
ee72e788ed
  1. 2
      pom.xml
  2. 2
      spring-boot-actuator/pom.xml
  3. 2
      spring-boot-autoconfigure/pom.xml
  4. 6
      spring-boot-dependencies/pom.xml
  5. 2
      spring-boot-devtools/pom.xml
  6. 2
      spring-boot-docs/pom.xml
  7. 2
      spring-boot-full-build/pom.xml
  8. 2
      spring-boot-test-autoconfigure/pom.xml
  9. 6
      spring-boot-test-support/pom.xml
  10. 0
      spring-boot-test-support/src/main/java/org/springframework/boot/junit/runner/classpath/ClassPathExclusions.java
  11. 0
      spring-boot-test-support/src/main/java/org/springframework/boot/junit/runner/classpath/ClassPathOverrides.java
  12. 0
      spring-boot-test-support/src/main/java/org/springframework/boot/junit/runner/classpath/ModifiedClassPathRunner.java
  13. 0
      spring-boot-test-support/src/main/java/org/springframework/boot/junit/runner/classpath/package-info.java
  14. 0
      spring-boot-test-support/src/main/java/org/springframework/boot/junit/runner/package-info.java
  15. 0
      spring-boot-test-support/src/test/java/org/springframework/boot/junit/runner/classpath/ModifiedClassPathRunnerExclusionsTests.java
  16. 0
      spring-boot-test-support/src/test/java/org/springframework/boot/junit/runner/classpath/ModifiedClassPathRunnerOverridesTests.java
  17. 2
      spring-boot-test/pom.xml
  18. 2
      spring-boot/pom.xml

2
pom.xml

@ -81,7 +81,7 @@ @@ -81,7 +81,7 @@
<module>spring-boot-dependencies</module>
<module>spring-boot-parent</module>
<module>spring-boot-tools</module>
<module>spring-boot-junit-runners</module>
<module>spring-boot-test-support</module>
<module>spring-boot</module>
<module>spring-boot-test</module>
<module>spring-boot-autoconfigure</module>

2
spring-boot-actuator/pom.xml

@ -288,7 +288,7 @@ @@ -288,7 +288,7 @@
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-junit-runners</artifactId>
<artifactId>spring-boot-test-support</artifactId>
<scope>test</scope>
</dependency>
<dependency>

2
spring-boot-autoconfigure/pom.xml

@ -623,7 +623,7 @@ @@ -623,7 +623,7 @@
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-junit-runners</artifactId>
<artifactId>spring-boot-test-support</artifactId>
<scope>test</scope>
</dependency>
<dependency>

6
spring-boot-dependencies/pom.xml

@ -206,12 +206,13 @@ @@ -206,12 +206,13 @@
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-junit-runners</artifactId>
<artifactId>spring-boot-test</artifactId>
<version>1.5.0.BUILD-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-test</artifactId>
<type>test-jar</type>
<version>1.5.0.BUILD-SNAPSHOT</version>
</dependency>
<dependency>
@ -221,8 +222,7 @@ @@ -221,8 +222,7 @@
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-test</artifactId>
<type>test-jar</type>
<artifactId>spring-boot-test-support</artifactId>
<version>1.5.0.BUILD-SNAPSHOT</version>
</dependency>
<dependency>

2
spring-boot-devtools/pom.xml

@ -94,7 +94,7 @@ @@ -94,7 +94,7 @@
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-junit-runners</artifactId>
<artifactId>spring-boot-test-support</artifactId>
<scope>test</scope>
</dependency>
<dependency>

2
spring-boot-docs/pom.xml

@ -729,7 +729,7 @@ @@ -729,7 +729,7 @@
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-junit-runners</artifactId>
<artifactId>spring-boot-test-support</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

2
spring-boot-full-build/pom.xml

@ -48,7 +48,7 @@ @@ -48,7 +48,7 @@
<module>../spring-boot-dependencies</module>
<module>../spring-boot-parent</module>
<module>../spring-boot-tools</module>
<module>../spring-boot-junit-runners</module>
<module>../spring-boot-test-support</module>
<module>../spring-boot</module>
<module>../spring-boot-test</module>
<module>../spring-boot-autoconfigure</module>

2
spring-boot-test-autoconfigure/pom.xml

@ -130,7 +130,7 @@ @@ -130,7 +130,7 @@
<!-- Test -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-junit-runners</artifactId>
<artifactId>spring-boot-test-support</artifactId>
<scope>test</scope>
</dependency>
<dependency>

6
spring-boot-junit-runners/pom.xml → spring-boot-test-support/pom.xml

@ -8,9 +8,9 @@ @@ -8,9 +8,9 @@
<version>1.5.0.BUILD-SNAPSHOT</version>
<relativePath>../spring-boot-parent</relativePath>
</parent>
<artifactId>spring-boot-junit-runners</artifactId>
<name>Spring Boot JUnit Runners</name>
<description>Spring Boot JUnit Runners</description>
<artifactId>spring-boot-test-support</artifactId>
<name>Spring Boot Testing Support</name>
<description>Spring Boot Testing Support</description>
<url>http://projects.spring.io/spring-boot/</url>
<organization>
<name>Pivotal Software, Inc.</name>

0
spring-boot-junit-runners/src/main/java/org/springframework/boot/junit/runner/classpath/ClassPathExclusions.java → spring-boot-test-support/src/main/java/org/springframework/boot/junit/runner/classpath/ClassPathExclusions.java

0
spring-boot-junit-runners/src/main/java/org/springframework/boot/junit/runner/classpath/ClassPathOverrides.java → spring-boot-test-support/src/main/java/org/springframework/boot/junit/runner/classpath/ClassPathOverrides.java

0
spring-boot-junit-runners/src/main/java/org/springframework/boot/junit/runner/classpath/ModifiedClassPathRunner.java → spring-boot-test-support/src/main/java/org/springframework/boot/junit/runner/classpath/ModifiedClassPathRunner.java

0
spring-boot-junit-runners/src/main/java/org/springframework/boot/junit/runner/classpath/package-info.java → spring-boot-test-support/src/main/java/org/springframework/boot/junit/runner/classpath/package-info.java

0
spring-boot-junit-runners/src/main/java/org/springframework/boot/junit/runner/package-info.java → spring-boot-test-support/src/main/java/org/springframework/boot/junit/runner/package-info.java

0
spring-boot-junit-runners/src/test/java/org/springframework/boot/junit/runner/classpath/ModifiedClassPathRunnerExclusionsTests.java → spring-boot-test-support/src/test/java/org/springframework/boot/junit/runner/classpath/ModifiedClassPathRunnerExclusionsTests.java

0
spring-boot-junit-runners/src/test/java/org/springframework/boot/junit/runner/classpath/ModifiedClassPathRunnerOverridesTests.java → spring-boot-test-support/src/test/java/org/springframework/boot/junit/runner/classpath/ModifiedClassPathRunnerOverridesTests.java

2
spring-boot-test/pom.xml

@ -120,7 +120,7 @@ @@ -120,7 +120,7 @@
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-junit-runners</artifactId>
<artifactId>spring-boot-test-support</artifactId>
<scope>test</scope>
</dependency>
<dependency>

2
spring-boot/pom.xml

@ -248,7 +248,7 @@ @@ -248,7 +248,7 @@
<!-- Test -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-junit-runners</artifactId>
<artifactId>spring-boot-test-support</artifactId>
<scope>test</scope>
</dependency>
<dependency>

Loading…
Cancel
Save