You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.0 KiB
XML
33 lines
1.0 KiB
XML
12 years ago
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
12 years ago
|
<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">
|
||
12 years ago
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<parent>
|
||
12 years ago
|
<groupId>org.springframework.zero</groupId>
|
||
|
<artifactId>spring-zero-samples</artifactId>
|
||
12 years ago
|
<version>0.5.0.BUILD-SNAPSHOT</version>
|
||
12 years ago
|
</parent>
|
||
12 years ago
|
<artifactId>spring-zero-sample-simple</artifactId>
|
||
12 years ago
|
<packaging>executable-jar</packaging>
|
||
12 years ago
|
<properties>
|
||
|
<main.basedir>${basedir}/../..</main.basedir>
|
||
|
</properties>
|
||
12 years ago
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>${project.groupId}</groupId>
|
||
12 years ago
|
<artifactId>spring-zero-starter</artifactId>
|
||
12 years ago
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
12 years ago
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>${project.groupId}</groupId>
|
||
|
<artifactId>spring-zero-maven-plugin</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
<extensions>true</extensions>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
12 years ago
|
</project>
|