This commit harmonizes the dependency management of internal modules so that versions can be omitted everywhere. Update the maven coordinates to provide the full groupId for consistency
90 lines
2.6 KiB
XML
90 lines
2.6 KiB
XML
<?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.1.0.BUILD-SNAPSHOT</version>
|
|
</parent>
|
|
<artifactId>spring-boot-starter-remote-shell</artifactId>
|
|
<name>Spring Boot Remote Shell Starter</name>
|
|
<description>Spring Boot Remote Shell Starter</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-actuator</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-context</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.crashub</groupId>
|
|
<artifactId>crash.cli</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.crashub</groupId>
|
|
<artifactId>crash.connectors.ssh</artifactId>
|
|
</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>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.crashub</groupId>
|
|
<artifactId>crash.plugins.cron</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.crashub</groupId>
|
|
<artifactId>crash.plugins.mail</artifactId>
|
|
</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>
|
|
</dependencies>
|
|
</project>
|