29 lines
1002 B
XML
29 lines
1002 B
XML
|
<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>
|
||
|
<artifactId>spring-shell</artifactId>
|
||
|
<version>0.1-SNAPSHOT</version>
|
||
|
<name>spring-shell</name>
|
||
|
<packaging>war</packaging>
|
||
|
|
||
|
<parent>
|
||
|
<artifactId>parent-boot-2</artifactId>
|
||
|
<groupId>com.baeldung</groupId>
|
||
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
<relativePath>../parent-boot-2</relativePath>
|
||
|
</parent>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.shell</groupId>
|
||
|
<artifactId>spring-shell</artifactId>
|
||
|
<version>${org.springframework.shell.version}</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<properties>
|
||
|
<org.springframework.shell.version>1.2.0.RELEASE</org.springframework.shell.version>
|
||
|
</properties>
|
||
|
|
||
|
</project>
|