Refactored package name

Just a little cleanup (added a space)
This commit is contained in:
Michael Minella
2015-11-20 15:07:42 -06:00
committed by Glenn Renfro
parent bd1243cae6
commit 54508f7c43
6 changed files with 19 additions and 6 deletions

View File

@@ -26,8 +26,7 @@
<modules>
<module>spring-cloud-task-core</module>
<module>spring-cloud-task-samples</module>
</modules>
</project>

View File

@@ -23,7 +23,7 @@ import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import org.springframework.cloud.task.config.DefaultTaskConfigurer;
import org.springframework.cloud.task.configuration.DefaultTaskConfigurer;
import org.springframework.context.annotation.Import;
import org.springframework.stereotype.Component;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.cloud.task.config;
package org.springframework.cloud.task.configuration;
import org.springframework.cloud.task.repository.LoggerTaskRepository;
import org.springframework.cloud.task.repository.TaskRepository;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.cloud.task.config;
package org.springframework.cloud.task.configuration;
import org.springframework.cloud.task.repository.TaskRepository;

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.cloud.task.config;
package org.springframework.cloud.task.configuration;
import java.util.ArrayList;
import java.util.Date;

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>spring-cloud-task-parent</artifactId>
<groupId>org.springframework.cloud</groupId>
<version>1.0.0.BUILD-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>spring-cloud-task-samples</artifactId>
</project>