without this change we copy paste all the scripts, resources etc. to every single project with this change each project will have this project's resources unpacked in the local `target` directory. The docs generation already reference this changed location so no need to copy paste of any resources is required fixes #60
28 lines
857 B
XML
28 lines
857 B
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>
|
|
<artifactId>spring-cloud-build-docs</artifactId>
|
|
<name>spring-cloud-build-docs</name>
|
|
<packaging>jar</packaging>
|
|
<description>Spring Cloud Build Docs</description>
|
|
<parent>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-build</artifactId>
|
|
<version>1.3.5.BUILD-SNAPSHOT</version>
|
|
</parent>
|
|
<build>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main</directory>
|
|
</resource>
|
|
</resources>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
<version>2.8.2</version>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|