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.
143 lines
4.8 KiB
143 lines
4.8 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> |
|
<parent> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-parent</artifactId> |
|
<version>0.5.0.BUILD-SNAPSHOT</version> |
|
<relativePath>../spring-boot-parent</relativePath> |
|
</parent> |
|
<artifactId>spring-boot-cli</artifactId> |
|
<packaging>jar</packaging> |
|
<properties> |
|
<main.basedir>${basedir}/..</main.basedir> |
|
<start-class>org.springframework.boot.cli.SpringCli</start-class> |
|
</properties> |
|
<dependencies> |
|
<!-- Compile --> |
|
<dependency> |
|
<groupId>net.sf.jopt-simple</groupId> |
|
<artifactId>jopt-simple</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.ivy</groupId> |
|
<artifactId>ivy</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.codehaus.groovy</groupId> |
|
<artifactId>groovy</artifactId> |
|
</dependency> |
|
<!-- Optional --> |
|
<dependency> |
|
<groupId>org.codehaus.groovy</groupId> |
|
<artifactId>groovy-templates</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
<!-- Provided (to ensure in m2 repo for @grab to resolve) --> |
|
<dependency> |
|
<groupId>org.springframework.integration</groupId> |
|
<artifactId>spring-integration-dsl-groovy-core</artifactId> |
|
<scope>provided</scope> |
|
</dependency> |
|
<!-- Test --> |
|
<dependency> |
|
<groupId>${project.groupId}</groupId> |
|
<artifactId>spring-boot</artifactId> |
|
<version>${project.version}</version> |
|
<classifier>tests</classifier> |
|
<scope>test</scope> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>${project.groupId}</groupId> |
|
<artifactId>spring-boot</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.javassist</groupId> |
|
<artifactId>javassist</artifactId> |
|
<version>3.16.1-GA</version> |
|
<scope>test</scope> |
|
</dependency> |
|
</dependencies> |
|
<build> |
|
<resources> |
|
<resource> |
|
<directory>src/main/resources</directory> |
|
<filtering>true</filtering> |
|
</resource> |
|
</resources> |
|
<plugins> |
|
<plugin> |
|
<artifactId>maven-surefire-plugin</artifactId> |
|
<configuration> |
|
<classpathDependencyExcludes> |
|
<classpathDependencyExcludes>org.springframework:spring-core</classpathDependencyExcludes> |
|
<classpathDependencyExcludes>org.springframework:spring-beans</classpathDependencyExcludes> |
|
<classpathDependencyExcludes>org.springframework:spring-aop</classpathDependencyExcludes> |
|
<classpathDependencyExcludes>org.springframework:spring-tx</classpathDependencyExcludes> |
|
<classpathDependencyExcludes>org.springframework:spring-expression</classpathDependencyExcludes> |
|
<classpathDependencyExcludes>org.springframework:spring-context</classpathDependencyExcludes> |
|
<classpathDependencyExcludes>org.springframework:spring-test</classpathDependencyExcludes> |
|
<classpathDependencyExcludes>org.springframework.retry:spring-retry</classpathDependencyExcludes> |
|
<classpathDependencyExcludes>org.springframework.integration:spring-integration-core</classpathDependencyExcludes> |
|
<classpathDependencyExcludes>org.springframework.integration:spring-integration-dsl-groovy-core</classpathDependencyExcludes> |
|
</classpathDependencyExcludes> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-shade-plugin</artifactId> |
|
<configuration> |
|
<filters> |
|
<filter> |
|
<artifact>*:*</artifact> |
|
<excludes> |
|
<exclude>META-INF/*.SF</exclude> |
|
<exclude>META-INF/*.DSA</exclude> |
|
<exclude>META-INF/*.RSA</exclude> |
|
</excludes> |
|
</filter> |
|
</filters> |
|
</configuration> |
|
<executions> |
|
<execution> |
|
<phase>package</phase> |
|
<goals> |
|
<goal>shade</goal> |
|
</goals> |
|
<configuration> |
|
<transformers> |
|
<transformer |
|
implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" /> |
|
<transformer |
|
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> |
|
<mainClass>${start-class}</mainClass> |
|
</transformer> |
|
</transformers> |
|
<createDependencyReducedPom>false</createDependencyReducedPom> |
|
</configuration> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-assembly-plugin</artifactId> |
|
<inherited>false</inherited> |
|
<configuration> |
|
<descriptors> |
|
<descriptor>src/main/assembly/descriptor.xml</descriptor> |
|
</descriptors> |
|
</configuration> |
|
<executions> |
|
<execution> |
|
<id>make-distribution</id> |
|
<phase>package</phase> |
|
<goals> |
|
<goal>single</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
</project>
|
|
|