Repository: incubator-tamaya-extensions
Updated Branches:
  refs/heads/master d9988db92 -> 242174a9a


TAMAYA-318: Update Spring in example


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/242174a9
Tree: 
http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/tree/242174a9
Diff: 
http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/diff/242174a9

Branch: refs/heads/master
Commit: 242174a9a08408368b61499780d8dae497c9c311
Parents: d9988db
Author: Phil Ottlinger <[email protected]>
Authored: Mon Dec 4 23:11:56 2017 +0100
Committer: Phil Ottlinger <[email protected]>
Committed: Mon Dec 4 23:11:56 2017 +0100

----------------------------------------------------------------------
 examples/05-spring-example/pom.xml | 214 ++++++++++++++++----------------
 1 file changed, 107 insertions(+), 107 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/blob/242174a9/examples/05-spring-example/pom.xml
----------------------------------------------------------------------
diff --git a/examples/05-spring-example/pom.xml 
b/examples/05-spring-example/pom.xml
index 1d54b6e..6534adb 100644
--- a/examples/05-spring-example/pom.xml
+++ b/examples/05-spring-example/pom.xml
@@ -1,119 +1,119 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<!--
-Licensed to the Apache Software Foundation (ASF) under one
-or more contributor license agreements.  See the NOTICE file
-distributed with this work for additional information
-regarding copyright ownership.  The ASF licenses this file
-to you under the Apache License, Version 2.0 (the
-"License"); you may not use this file except in compliance
-with the License.  You may obtain a copy of the License at
+<!-- Licensed to the Apache Software Foundation (ASF) under one or more 
contributor 
+       license agreements. See the NOTICE file distributed with this work for 
additional 
+       information regarding copyright ownership. The ASF licenses this file 
to 
+       you under the Apache License, Version 2.0 (the "License"); you may not 
use 
+       this file except in compliance with the License. You may obtain a copy 
of 
+       the License at http://www.apache.org/licenses/LICENSE-2.0 Unless 
required 
+       by applicable law or agreed to in writing, software distributed under 
the 
+       License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR 
CONDITIONS 
+       OF ANY KIND, either express or implied. See the License for the 
specific 
+       language governing permissions and limitations under the License. -->
+<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";>
+       <modelVersion>4.0.0</modelVersion>
 
-   http://www.apache.org/licenses/LICENSE-2.0
+       <parent>
+               <groupId>org.apache.tamaya.ext.examples</groupId>
+               <artifactId>examples</artifactId>
+               <version>0.4-incubating-SNAPSHOT</version>
+       </parent>
 
-Unless required by applicable law or agreed to in writing,
-software distributed under the License is distributed on an
-"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-KIND, either express or implied.  See the License for the
-specific language governing permissions and limitations
-under the License.
--->
-<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";>
-    <modelVersion>4.0.0</modelVersion>
+       <artifactId>05-spring-example</artifactId>
 
-    <parent>
-        <groupId>org.apache.tamaya.ext.examples</groupId>
-        <artifactId>examples</artifactId>
-        <version>0.4-incubating-SNAPSHOT</version>
-    </parent>
+       <properties>
+               <spring.version>4.3.13.RELEASE</spring.version>
+               <spring.boot.version>1.5.8.RELEASE</spring.boot.version>
+               
<tamaya-apicore.version>0.4-incubating-SNAPSHOT</tamaya-apicore.version>
+       </properties>
 
-    <artifactId>05-spring-example</artifactId>
+       <name>Apache Tamaya Spring Example</name>
 
-    <properties>
-        <spring.version>4.3.10.RELEASE</spring.version>
-        <spring.boot.version>1.5.8.RELEASE</spring.boot.version>
-        
<tamaya-apicore.version>0.4-incubating-SNAPSHOT</tamaya-apicore.version>
-    </properties>
-
-    <name>Apache Tamaya Spring Example</name>
-
-    <description>
+       <description>
         This project contains a simple example demonstrating the usage
         of the Tamaya Spring module.
     </description>
 
-    <dependencies>
-        <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</groupId>
-            <artifactId>tamaya-core</artifactId>
-            <version>${tamaya-apicore.version}</version>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.tamaya.ext</groupId>
-            <artifactId>tamaya-events</artifactId>
-            <version>${project.version}</version>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.tamaya.ext</groupId>
-            <artifactId>tamaya-spring</artifactId>
-            <version>${project.version}</version>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.tamaya.ext</groupId>
-            <artifactId>tamaya-injection</artifactId>
-            <version>${project.version}</version>
-        </dependency>
-        <dependency>
-            <groupId>org.hamcrest</groupId>
-            <artifactId>java-hamcrest</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>commons-io</groupId>
-            <artifactId>commons-io</artifactId>
-        </dependency>
-        <!-- Test -->
-        <dependency>
-            <groupId>org.springframework.boot</groupId>
-            <artifactId>spring-boot-starter-test</artifactId>
-            <version>${spring.boot.version}</version>
-        </dependency>
-    </dependencies>
+       <dependencies>
+               <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</groupId>
+                       <artifactId>tamaya-core</artifactId>
+                       <version>${tamaya-apicore.version}</version>
+               </dependency>
+               <dependency>
+                       <groupId>org.apache.tamaya.ext</groupId>
+                       <artifactId>tamaya-events</artifactId>
+                       <version>${project.version}</version>
+               </dependency>
+               <dependency>
+                       <groupId>org.apache.tamaya.ext</groupId>
+                       <artifactId>tamaya-spring</artifactId>
+                       <version>${project.version}</version>
+               </dependency>
+               <dependency>
+                       <groupId>org.apache.tamaya.ext</groupId>
+                       <artifactId>tamaya-injection</artifactId>
+                       <version>${project.version}</version>
+               </dependency>
+               <dependency>
+                       <groupId>org.hamcrest</groupId>
+                       <artifactId>java-hamcrest</artifactId>
+               </dependency>
+               <dependency>
+                       <groupId>commons-io</groupId>
+                       <artifactId>commons-io</artifactId>
+               </dependency>
+               <!-- Test -->
+               <dependency>
+                       <groupId>org.springframework.boot</groupId>
+                       <artifactId>spring-boot-starter-test</artifactId>
+                       <version>${spring.boot.version}</version>
+               </dependency>
+       </dependencies>
+
+       <profiles>
+               <profile>
+                       <id>live</id>
+                       <build>
+                               <defaultGoal>spring-boot:run</defaultGoal>
+                       </build>
+               </profile>
+       </profiles>
 
-    <build>
-        <plugins>
-            <plugin>
-                <groupId>org.pitest</groupId>
-                <artifactId>pitest-maven</artifactId>
-                <configuration>
-                    <skip>true</skip>
-                </configuration>
-            </plugin>
-            <plugin>
-                <groupId>org.springframework.boot</groupId>
-                <artifactId>spring-boot-maven-plugin</artifactId>
-                <version>${spring.boot.version}</version>
-                <configuration>
-                    <executable>true</executable>
-                </configuration>
-            </plugin>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-surefire-plugin</artifactId>
-                <configuration>
-                    <useSystemClassLoader>false</useSystemClassLoader>
-                </configuration>
-            </plugin>
-        </plugins>
-    </build>
+       <build>
+               <plugins>
+                       <plugin>
+                               <groupId>org.pitest</groupId>
+                               <artifactId>pitest-maven</artifactId>
+                               <configuration>
+                                       <skip>true</skip>
+                               </configuration>
+                       </plugin>
+                       <plugin>
+                               <groupId>org.springframework.boot</groupId>
+                               
<artifactId>spring-boot-maven-plugin</artifactId>
+                               <version>${spring.boot.version}</version>
+                               <configuration>
+                                       <executable>true</executable>
+                               </configuration>
+                       </plugin>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-surefire-plugin</artifactId>
+                               <configuration>
+                                       
<useSystemClassLoader>false</useSystemClassLoader>
+                               </configuration>
+                       </plugin>
+               </plugins>
+       </build>
 </project>

Reply via email to