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.
142 lines
4.0 KiB
142 lines
4.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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
|
<modelVersion>4.0.0</modelVersion> |
|
<parent> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starters</artifactId> |
|
<version>1.4.1.BUILD-SNAPSHOT</version> |
|
</parent> |
|
<artifactId>spring-boot-starter-remote-shell</artifactId> |
|
<name>Spring Boot Remote Shell Starter</name> |
|
<description>Starter for using the CRaSH remote shell to monitor and manage your |
|
application over SSH</description> |
|
<url>http://projects.spring.io/spring-boot/</url> |
|
<organization> |
|
<name>Pivotal Software, Inc.</name> |
|
<url>http://www.spring.io</url> |
|
</organization> |
|
<properties> |
|
<main.basedir>${basedir}/../..</main.basedir> |
|
</properties> |
|
<dependencies> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-actuator</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.crashub</groupId> |
|
<artifactId>crash.cli</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.crashub</groupId> |
|
<artifactId>crash.connectors.ssh</artifactId> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>org.codehaus.groovy</groupId> |
|
<artifactId>groovy-all</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.crashub</groupId> |
|
<artifactId>crash.connectors.telnet</artifactId> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>javax.servlet</groupId> |
|
<artifactId>servlet-api</artifactId> |
|
</exclusion> |
|
<exclusion> |
|
<groupId>log4j</groupId> |
|
<artifactId>log4j</artifactId> |
|
</exclusion> |
|
<exclusion> |
|
<groupId>commons-logging</groupId> |
|
<artifactId>commons-logging</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.crashub</groupId> |
|
<artifactId>crash.embed.spring</artifactId> |
|
<exclusions> |
|
<exclusion> |
|
<artifactId>spring-web</artifactId> |
|
<groupId>org.springframework</groupId> |
|
</exclusion> |
|
<exclusion> |
|
<groupId>org.codehaus.groovy</groupId> |
|
<artifactId>groovy-all</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.crashub</groupId> |
|
<artifactId>crash.plugins.cron</artifactId> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>org.codehaus.groovy</groupId> |
|
<artifactId>groovy-all</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.crashub</groupId> |
|
<artifactId>crash.plugins.mail</artifactId> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>org.codehaus.groovy</groupId> |
|
<artifactId>groovy-all</artifactId> |
|
</exclusion> |
|
<exclusion> |
|
<groupId>javax.mail</groupId> |
|
<artifactId>mail</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.crashub</groupId> |
|
<artifactId>crash.shell</artifactId> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>org.codehaus.groovy</groupId> |
|
<artifactId>groovy-all</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.codehaus.groovy</groupId> |
|
<artifactId>groovy</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.sun.mail</groupId> |
|
<artifactId>javax.mail</artifactId> |
|
</dependency> |
|
</dependencies> |
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.basepom.maven</groupId> |
|
<artifactId>duplicate-finder-maven-plugin</artifactId> |
|
<executions> |
|
<execution> |
|
<id>duplicate-dependencies</id> |
|
<phase>validate</phase> |
|
<goals> |
|
<goal>check</goal> |
|
</goals> |
|
<configuration> |
|
<ignoredResourcePatterns> |
|
<ignoredResourcePattern>crash/crash.properties</ignoredResourcePattern> |
|
</ignoredResourcePatterns> |
|
</configuration> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
</project>
|
|
|