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.
101 lines
3.2 KiB
101 lines
3.2 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> |
|
<groupId>org.springframework.boot.launcher.it</groupId> |
|
<artifactId>executable-props</artifactId> |
|
<version>0.0.1.BUILD-SNAPSHOT</version> |
|
<properties> |
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
<maven.compiler.source>@java.version@</maven.compiler.source> |
|
<maven.compiler.target>@java.version@</maven.compiler.target> |
|
</properties> |
|
<build> |
|
<plugins> |
|
<plugin> |
|
<artifactId>maven-assembly-plugin</artifactId> |
|
<version>@maven-assembly-plugin.version@</version> |
|
<configuration> |
|
<descriptors> |
|
<descriptor>src/main/assembly/jar-with-dependencies.xml</descriptor> |
|
</descriptors> |
|
<recompressZippedFiles>false</recompressZippedFiles> |
|
<archive> |
|
<manifest> |
|
<mainClass>org.springframework.boot.loader.PropertiesLauncher</mainClass> |
|
</manifest> |
|
<manifestEntries> |
|
<Start-Class>org.springframework.boot.load.it.props.EmbeddedJarStarter</Start-Class> |
|
</manifestEntries> |
|
</archive> |
|
</configuration> |
|
<executions> |
|
<execution> |
|
<id>jar-with-dependencies</id> |
|
<phase>package</phase> |
|
<goals> |
|
<goal>single</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-compiler-plugin</artifactId> |
|
<version>@maven-compiler-plugin.version@</version> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-dependency-plugin</artifactId> |
|
<version>@maven-dependency-plugin.version@</version> |
|
<executions> |
|
<execution> |
|
<id>unpack</id> |
|
<phase>prepare-package</phase> |
|
<goals> |
|
<goal>unpack</goal> |
|
</goals> |
|
<configuration> |
|
<artifactItems> |
|
<artifactItem> |
|
<groupId>@project.groupId@</groupId> |
|
<artifactId>@project.artifactId@</artifactId> |
|
<version>@project.version@</version> |
|
<type>jar</type> |
|
</artifactItem> |
|
</artifactItems> |
|
<outputDirectory>${project.build.directory}/assembly</outputDirectory> |
|
</configuration> |
|
</execution> |
|
<execution> |
|
<id>copy</id> |
|
<phase>prepare-package</phase> |
|
<goals> |
|
<goal>copy-dependencies</goal> |
|
</goals> |
|
<configuration> |
|
<outputDirectory>${project.build.directory}/assembly/BOOT-INF/lib</outputDirectory> |
|
</configuration> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-jar-plugin</artifactId> |
|
<version>@maven-jar-plugin.version@</version> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-surefire-plugin</artifactId> |
|
<version>@maven-surefire-plugin.version@</version> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
<dependencies> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-context</artifactId> |
|
<version>@spring-framework.version@</version> |
|
</dependency> |
|
</dependencies> |
|
</project>
|
|
|