Repository: incubator-tamaya-extensions Updated Branches: refs/heads/master 14a0b9b8a -> 3fcb6b565
TAMAYA-318 Fixed invalid pom structure. Project: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/commit/3fcb6b56 Tree: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/tree/3fcb6b56 Diff: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/diff/3fcb6b56 Branch: refs/heads/master Commit: 3fcb6b5658a062dcea9964e86e4506c196232199 Parents: 14a0b9b Author: Anatole Tresch <[email protected]> Authored: Mon Nov 20 00:56:13 2017 +0100 Committer: Anatole Tresch <[email protected]> Committed: Mon Nov 20 00:56:13 2017 +0100 ---------------------------------------------------------------------- examples/05-spring-example/pom.xml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/blob/3fcb6b56/examples/05-spring-example/pom.xml ---------------------------------------------------------------------- diff --git a/examples/05-spring-example/pom.xml b/examples/05-spring-example/pom.xml index 93c600c..060d16e 100644 --- a/examples/05-spring-example/pom.xml +++ b/examples/05-spring-example/pom.xml @@ -23,9 +23,9 @@ under the License. <modelVersion>4.0.0</modelVersion> <parent> - <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-starter-parent</artifactId> - <version>1.5.6.RELEASE</version> + <groupId>org.apache.tamaya.ext.examples</groupId> + <artifactId>examples</artifactId> + <version>0.4-incubating-SNAPSHOT</version> </parent> <artifactId>05-spring-example</artifactId> @@ -47,11 +47,19 @@ under the License. <dependencies> <dependency> <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-parent</artifactId> + <version>${spring.boot.version}</version> + <type>pom</type> + </dependency> + <dependency> + <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> + <version>${spring.boot.version}</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-freemarker</artifactId> + <version>${spring.boot.version}</version> </dependency> <!--<dependency>--> <!--<groupId>org.apache.tamaya.ext</groupId>--> @@ -95,6 +103,7 @@ under the License. <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> + <version>${spring.boot.version}</version> </dependency> </dependencies>
