From cc67f509c2bbf9f49a883e449833bd9a055f433a Mon Sep 17 00:00:00 2001 From: Dave Syer Date: Thu, 31 Jul 2014 12:51:52 -0700 Subject: [PATCH] Add basic starters --- .gitignore | 12 +++ pom.xml | 74 +++++++++++++++++++ spring-platform-starter-eureka/pom.xml | 34 +++++++++ .../main/resources/META-INF/spring.provides | 1 + spring-platform-starter/pom.xml | 26 +++++++ .../main/resources/META-INF/spring.provides | 1 + 6 files changed, 148 insertions(+) create mode 100644 .gitignore create mode 100644 pom.xml create mode 100644 spring-platform-starter-eureka/pom.xml create mode 100644 spring-platform-starter-eureka/src/main/resources/META-INF/spring.provides create mode 100644 spring-platform-starter/pom.xml create mode 100644 spring-platform-starter/src/main/resources/META-INF/spring.provides diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..885a123 --- /dev/null +++ b/.gitignore @@ -0,0 +1,12 @@ +*~ +#* +*# +.#* +.classpath +.project +.settings +.springBeans +.gradle +build +bin +target/ diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..22965d2 --- /dev/null +++ b/pom.xml @@ -0,0 +1,74 @@ + + + 4.0.0 + + org.springframework.boot + spring-boot-parent + 1.1.5.BUILD-SNAPSHOT + + + org.springframework.platform + spring-platform-starters + 1.0.0.BUILD-SNAPSHOT + pom + Spring Platform Starters + Spring Platform Starters + http://projects.spring.io/spring-boot/ + + Pivotal Software, Inc. + http://www.spring.io + + + ${basedir}/.. + + + spring-platform-starter + spring-platform-starter-eureka + + + + + org.springframework.platform + spring-platform-config + 1.0.0.BUILD-SNAPSHOT + pom + import + + + org.springframework.platform + spring-platform-netflix + 1.0.0.BUILD-SNAPSHOT + pom + import + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-rules + + enforce + + + + + + commons-logging:*:* + + true + + + + true + + + + + + + diff --git a/spring-platform-starter-eureka/pom.xml b/spring-platform-starter-eureka/pom.xml new file mode 100644 index 0000000..7e430cb --- /dev/null +++ b/spring-platform-starter-eureka/pom.xml @@ -0,0 +1,34 @@ + + + 4.0.0 + + org.springframework.platform + spring-platform-starters + 1.0.0.BUILD-SNAPSHOT + + spring-platform-starter-eureka + spring-platform-starter-eureka + Spring Platform Starter + http://projects.spring.io/spring-boot/ + + Pivotal Software, Inc. + http://www.spring.io + + + ${basedir}/../.. + + + + org.springframework.platform + spring-platform-config-client + + + org.springframework.platform + spring-platform-netflix-core + + + com.netflix.eureka + eureka-client + + + diff --git a/spring-platform-starter-eureka/src/main/resources/META-INF/spring.provides b/spring-platform-starter-eureka/src/main/resources/META-INF/spring.provides new file mode 100644 index 0000000..3dc45a0 --- /dev/null +++ b/spring-platform-starter-eureka/src/main/resources/META-INF/spring.provides @@ -0,0 +1 @@ +provides: spring-platform-netflix-core, eureka-client \ No newline at end of file diff --git a/spring-platform-starter/pom.xml b/spring-platform-starter/pom.xml new file mode 100644 index 0000000..0512b95 --- /dev/null +++ b/spring-platform-starter/pom.xml @@ -0,0 +1,26 @@ + + + 4.0.0 + + org.springframework.platform + spring-platform-starters + 1.0.0.BUILD-SNAPSHOT + + spring-platform-starter + spring-platform-starter + Spring Platform Starter + http://projects.spring.io/spring-boot/ + + Pivotal Software, Inc. + http://www.spring.io + + + ${basedir}/../.. + + + + org.springframework.platform + spring-platform-config-client + + + diff --git a/spring-platform-starter/src/main/resources/META-INF/spring.provides b/spring-platform-starter/src/main/resources/META-INF/spring.provides new file mode 100644 index 0000000..00f9f21 --- /dev/null +++ b/spring-platform-starter/src/main/resources/META-INF/spring.provides @@ -0,0 +1 @@ +provides: spring-platform-config-client,spring-platform-config-server \ No newline at end of file