flange-example-cloud-hellouser-faas
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>dev.flange</groupId>
<artifactId>flange-example-cloud-hellouser-faas</artifactId>
<version>0.1.0</version>
</dependency><?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>dev.flange</groupId>
<artifactId>flange-examples</artifactId>
<version>0.1.0</version>
</parent>
<artifactId>flange-example-cloud-hellouser-faas</artifactId>
<packaging>pom</packaging>
<modules>
<module>app</module>
<module>message-service-api</module>
<module>message-service-impl</module>
<module>user-service-api</module>
<module>user-service-impl</module>
</modules>
<name>Cloud - Hello User: FaaS</name>
<description>Flange Cloud example application illustrating two cloud functions, one invoking the other.</description>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>dev.flange</groupId>
<artifactId>flange-example-cloud-hellouser-faas-app</artifactId>
<version>0.1.0</version>
</dependency>
<dependency>
<groupId>dev.flange</groupId>
<artifactId>flange-example-cloud-hellouser-faas-message-service-api</artifactId>
<version>0.1.0</version>
</dependency>
<dependency>
<groupId>dev.flange</groupId>
<artifactId>flange-example-cloud-hellouser-faas-message-service-impl</artifactId>
<version>0.1.0</version>
</dependency>
<dependency>
<groupId>dev.flange</groupId>
<artifactId>flange-example-cloud-hellouser-faas-user-service-api</artifactId>
<version>0.1.0</version>
</dependency>
<dependency>
<groupId>dev.flange</groupId>
<artifactId>flange-example-cloud-hellouser-faas-user-service-impl</artifactId>
<version>0.1.0</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<annotationProcessorPaths>
<annotationProcessorPath>
<groupId>dev.flange</groupId>
<artifactId>flange-build</artifactId>
<version>${flange.version}</version>
</annotationProcessorPath>
</annotationProcessorPaths>
<annotationProcessors>
<annotationProcessor>dev.flange.build.cloud.FlangeCloudAnnotationProcessor</annotationProcessor>
</annotationProcessors>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>