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.
107 lines
3.0 KiB
107 lines
3.0 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"> |
|
<!-- This POM is just to trigger the Ant/Ivy sample from Maven and to test --> |
|
<modelVersion>4.0.0</modelVersion> |
|
<parent> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-samples</artifactId> |
|
<version>${revision}</version> |
|
</parent> |
|
<artifactId>spring-boot-sample-ant</artifactId> |
|
<name>Spring Boot Ant Sample</name> |
|
<description>Spring Boot Ant Sample</description> |
|
<properties> |
|
<main.basedir>${basedir}/../..</main.basedir> |
|
<ant.version>1.9.3</ant.version> |
|
</properties> |
|
<dependencies> |
|
<!-- Compile --> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-loader</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-test</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-antlib</artifactId> |
|
<version>${project.version}</version> |
|
</dependency> |
|
<!-- Test --> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-loader-tools</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
</dependencies> |
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-compiler-plugin</artifactId> |
|
<executions> |
|
<execution> |
|
<id>default-compile</id> |
|
<phase>none</phase> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-antrun-plugin</artifactId> |
|
<executions> |
|
<execution> |
|
<id>antbuild</id> |
|
<phase>package</phase> |
|
<configuration> |
|
<target> |
|
<property name="build.compiler" value="extJavac" /> |
|
<ant dir="${basedir}" /> |
|
</target> |
|
</configuration> |
|
<goals> |
|
<goal>run</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
<dependencies> |
|
<dependency> |
|
<groupId>org.apache.ant</groupId> |
|
<artifactId>ant</artifactId> |
|
<version>${ant.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.ivy</groupId> |
|
<artifactId>ivy</artifactId> |
|
<version>2.4.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-antlib</artifactId> |
|
<version>${revision}</version> |
|
</dependency> |
|
</dependencies> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-failsafe-plugin</artifactId> |
|
<executions> |
|
<execution> |
|
<goals> |
|
<goal>integration-test</goal> |
|
<goal>verify</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
</project>
|
|
|