Files
spring-cloud-function/spring-cloud-function-samples/pom.xml
2018-10-23 13:35:10 +00:00

39 lines
1.1 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>
<artifactId>spring-cloud-function-samples</artifactId>
<name>Spring Cloud Function Samples</name>
<packaging>pom</packaging>
<parent>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-function-parent</artifactId>
<version>2.0.0.BUILD-SNAPSHOT</version>
</parent>
<modules>
<module>function-sample</module>
<module>function-sample-pof</module>
<module>function-sample-pojo</module>
<module>function-sample-compiler</module>
<module>function-sample-task</module>
<module>function-sample-aws</module>
<module>function-sample-azure</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>