d43ac8d1b5
* BAEL-5049 Added tutorial code for article. * BAEL-5049 Added readme. * Initial code for 2-javasdk to properly include as part of Spring Boot project. * Added binding with rabbitmq. * Removed 1-intro module. * Updates from comments. * Added .gitignore back in. * Cleaned up POMs. * Get rid of .gitignore. * Change controller to use GetMapping. Co-authored-by: Gerald Boersma <gerald.boersma@icsynergy.com>
20 lines
656 B
XML
20 lines
656 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-dapr</artifactId>
|
|
<packaging>pom</packaging>
|
|
|
|
<parent>
|
|
<groupId>com.baeldung.spring.cloud</groupId>
|
|
<artifactId>spring-cloud</artifactId>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<modules>
|
|
<module>gateway</module>
|
|
<module>greeting</module>
|
|
</modules>
|
|
</project>
|