You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
114 lines
3.5 KiB
114 lines
3.5 KiB
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
|
<modelVersion>4.0.0</modelVersion> |
|
<parent> |
|
<!-- Your own application should inherit from spring-boot-starter-parent --> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-samples</artifactId> |
|
<version>${revision}</version> |
|
</parent> |
|
<artifactId>spring-boot-sample-custom-layout</artifactId> |
|
<name>Spring Boot Custom Layout Sample</name> |
|
<description>Spring Boot Custom Layout Sample</description> |
|
<properties> |
|
<main.basedir>${basedir}/../..</main.basedir> |
|
</properties> |
|
<dependencies> |
|
<!-- Compile --> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-loader-tools</artifactId> |
|
</dependency> |
|
</dependencies> |
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-invoker-plugin</artifactId> |
|
<configuration> |
|
<localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath> |
|
</configuration> |
|
<executions> |
|
<execution> |
|
<id>prepare-integration-test</id> |
|
<phase>pre-integration-test</phase> |
|
<goals> |
|
<goal>install</goal> |
|
</goals> |
|
</execution> |
|
<execution> |
|
<id>integration-test</id> |
|
<phase>integration-test</phase> |
|
<goals> |
|
<goal>run</goal> |
|
</goals> |
|
<configuration> |
|
<cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo> |
|
<settingsFile>src/it/settings.xml</settingsFile> |
|
<postBuildHookScript>verify</postBuildHookScript> |
|
<addTestClassPath>true</addTestClassPath> |
|
<skipInvocation>${skipTests}</skipInvocation> |
|
<streamLogs>true</streamLogs> |
|
</configuration> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-antrun-plugin</artifactId> |
|
<executions> |
|
<execution> |
|
<id>cleanup-local-integration-repo</id> |
|
<phase>pre-integration-test</phase> |
|
<goals> |
|
<goal>run</goal> |
|
</goals> |
|
<configuration> |
|
<target> |
|
<replaceregexp match="\$\{revision\}" replace="${project.version}" |
|
flags="g" byline="true"> |
|
<fileset |
|
dir="${project.build.directory}/local-repo/org/springframework/boot/" |
|
includes="**/*.pom" /> |
|
</replaceregexp> |
|
</target> |
|
</configuration> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-failsafe-plugin</artifactId> |
|
</plugin> |
|
</plugins> |
|
<pluginManagement> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.eclipse.m2e</groupId> |
|
<artifactId>lifecycle-mapping</artifactId> |
|
<version>1.0.0</version> |
|
<configuration> |
|
<lifecycleMappingMetadata> |
|
<pluginExecutions> |
|
<pluginExecution> |
|
<pluginExecutionFilter> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-dependency-plugin</artifactId> |
|
<versionRange>[2.10,)</versionRange> |
|
<goals> |
|
<goal>copy</goal> |
|
</goals> |
|
</pluginExecutionFilter> |
|
<action> |
|
<ignore></ignore> |
|
</action> |
|
</pluginExecution> |
|
</pluginExecutions> |
|
</lifecycleMappingMetadata> |
|
</configuration> |
|
</plugin> |
|
</plugins> |
|
</pluginManagement> |
|
</build> |
|
</project>
|
|
|