Subversion Repositories Study

Compare Revisions

Ignore whitespace Rev 350 → Rev 351

/trunk/spring/spring-boot-parent/pom.xml
0,0 → 1,31
<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
 
<parent>
<groupId>fr.ejn.tutorial.spring</groupId>
<artifactId>spring-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
 
<groupId>fr.ejn.tutorial.spring.spring-boot</groupId>
<artifactId>spring-boot-parent</artifactId>
<packaging>pom</packaging>
<name>Spring Boot</name>
<description>Study Spring Boot framework</description>
 
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
 
</project>