From f02c651e40ee241fc75239e1058778775b697be9 Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Wed, 14 Oct 2015 23:25:24 -0700 Subject: [PATCH] Rename `security-tests-*` to `security-test-*` Update spring-boot-security-tests to use standard module names. Fixes gh-4101 --- .../spring-boot-security-tests/pom.xml | 2 +- .../pom.xml | 2 +- .../src/main/java/sample/HelloWebSecurityApplication.java | 0 .../src/test/java/sample/HelloWebSecurityApplicationTests.java | 0 4 files changed, 2 insertions(+), 2 deletions(-) rename spring-boot-integration-tests/spring-boot-security-tests/{spring-boot-security-tests-web-helloworld => spring-boot-security-test-web-helloworld}/pom.xml (94%) rename spring-boot-integration-tests/spring-boot-security-tests/{spring-boot-security-tests-web-helloworld => spring-boot-security-test-web-helloworld}/src/main/java/sample/HelloWebSecurityApplication.java (100%) rename spring-boot-integration-tests/spring-boot-security-tests/{spring-boot-security-tests-web-helloworld => spring-boot-security-test-web-helloworld}/src/test/java/sample/HelloWebSecurityApplicationTests.java (100%) diff --git a/spring-boot-integration-tests/spring-boot-security-tests/pom.xml b/spring-boot-integration-tests/spring-boot-security-tests/pom.xml index 6f124268ca2..06b023921a3 100644 --- a/spring-boot-integration-tests/spring-boot-security-tests/pom.xml +++ b/spring-boot-integration-tests/spring-boot-security-tests/pom.xml @@ -19,6 +19,6 @@ ${basedir}/../.. - spring-boot-security-tests-web-helloworld + spring-boot-security-test-web-helloworld diff --git a/spring-boot-integration-tests/spring-boot-security-tests/spring-boot-security-tests-web-helloworld/pom.xml b/spring-boot-integration-tests/spring-boot-security-tests/spring-boot-security-test-web-helloworld/pom.xml similarity index 94% rename from spring-boot-integration-tests/spring-boot-security-tests/spring-boot-security-tests-web-helloworld/pom.xml rename to spring-boot-integration-tests/spring-boot-security-tests/spring-boot-security-test-web-helloworld/pom.xml index 59642c60aef..af90d9b2417 100644 --- a/spring-boot-integration-tests/spring-boot-security-tests/spring-boot-security-tests-web-helloworld/pom.xml +++ b/spring-boot-integration-tests/spring-boot-security-tests/spring-boot-security-test-web-helloworld/pom.xml @@ -7,7 +7,7 @@ 1.3.0.BUILD-SNAPSHOT ../ - spring-boot-security-tests-web-helloworld + spring-boot-security-test-web-helloworld Spring Boot Security Tests - Web Hello World ${project.name} http://projects.spring.io/spring-boot/ diff --git a/spring-boot-integration-tests/spring-boot-security-tests/spring-boot-security-tests-web-helloworld/src/main/java/sample/HelloWebSecurityApplication.java b/spring-boot-integration-tests/spring-boot-security-tests/spring-boot-security-test-web-helloworld/src/main/java/sample/HelloWebSecurityApplication.java similarity index 100% rename from spring-boot-integration-tests/spring-boot-security-tests/spring-boot-security-tests-web-helloworld/src/main/java/sample/HelloWebSecurityApplication.java rename to spring-boot-integration-tests/spring-boot-security-tests/spring-boot-security-test-web-helloworld/src/main/java/sample/HelloWebSecurityApplication.java diff --git a/spring-boot-integration-tests/spring-boot-security-tests/spring-boot-security-tests-web-helloworld/src/test/java/sample/HelloWebSecurityApplicationTests.java b/spring-boot-integration-tests/spring-boot-security-tests/spring-boot-security-test-web-helloworld/src/test/java/sample/HelloWebSecurityApplicationTests.java similarity index 100% rename from spring-boot-integration-tests/spring-boot-security-tests/spring-boot-security-tests-web-helloworld/src/test/java/sample/HelloWebSecurityApplicationTests.java rename to spring-boot-integration-tests/spring-boot-security-tests/spring-boot-security-test-web-helloworld/src/test/java/sample/HelloWebSecurityApplicationTests.java