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.
85 lines
2.6 KiB
85 lines
2.6 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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
|
<modelVersion>4.0.0</modelVersion> |
|
<groupId>org.springframework.boot.launcher.it</groupId> |
|
<artifactId>executable-war</artifactId> |
|
<version>0.0.1.BUILD-SNAPSHOT</version> |
|
<packaging>war</packaging> |
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-compiler-plugin</artifactId> |
|
<version>3.1</version> |
|
<configuration> |
|
<source>1.6</source> |
|
<target>1.6</target> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-war-plugin</artifactId> |
|
<version>2.3</version> |
|
<configuration> |
|
<archive> |
|
<manifest> |
|
<mainClass>org.springframework.boot.load.WarLauncher</mainClass> |
|
</manifest> |
|
<manifestEntries> |
|
<Start-Class>org.springframework.boot.load.it.war.embedded.EmbeddedWarStarter</Start-Class> |
|
</manifestEntries> |
|
</archive> |
|
<failOnMissingWebXml>false</failOnMissingWebXml> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-dependency-plugin</artifactId> |
|
<version>2.6</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}/${project.artifactId}-${project.version}</outputDirectory> |
|
</configuration> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
<dependencies> |
|
<dependency> |
|
<groupId>org.eclipse.jetty</groupId> |
|
<artifactId>jetty-webapp</artifactId> |
|
<version>8.1.8.v20121106</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.eclipse.jetty</groupId> |
|
<artifactId>jetty-plus</artifactId> |
|
<version>8.1.8.v20121106</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.eclipse.jetty</groupId> |
|
<artifactId>jetty-annotations</artifactId> |
|
<version>8.1.8.v20121106</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-webmvc</artifactId> |
|
<version>3.2.0.RELEASE</version> |
|
</dependency> |
|
</dependencies> |
|
</project>
|
|
|