|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | + <modelVersion>4.0.0</modelVersion> |
| 6 | + <parent> |
| 7 | + <groupId>org.springframework.experimental</groupId> |
| 8 | + <artifactId>spring-native-sample-parent</artifactId> |
| 9 | + <version>0.10.6-SNAPSHOT</version> |
| 10 | + <relativePath>../maven-parent/pom.xml</relativePath> |
| 11 | + </parent> |
| 12 | + <groupId>com.example</groupId> |
| 13 | + <artifactId>cloud-stream-rabbit</artifactId> |
| 14 | + <version>0.0.1-SNAPSHOT</version> |
| 15 | + <name>rabbit</name> |
| 16 | + <description>GraalVM Spring Cloud Stream Rabbit Binder Demo</description> |
| 17 | + |
| 18 | + <properties> |
| 19 | + <java.version>1.8</java.version> |
| 20 | + <main.class>com.example.demo.SpringCloudStreamRabbitApplication</main.class> |
| 21 | + </properties> |
| 22 | + |
| 23 | + <dependencies> |
| 24 | + <dependency> |
| 25 | + <groupId>org.springframework.experimental</groupId> |
| 26 | + <artifactId>spring-native</artifactId> |
| 27 | + </dependency> |
| 28 | + <dependency> |
| 29 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 30 | + <artifactId>jackson-databind</artifactId> |
| 31 | + </dependency> |
| 32 | + <dependency> |
| 33 | + <groupId>org.springframework.boot</groupId> |
| 34 | + <artifactId>spring-boot-starter</artifactId> |
| 35 | + </dependency> |
| 36 | + <dependency> |
| 37 | + <groupId>org.springframework.cloud</groupId> |
| 38 | + <artifactId>spring-cloud-stream-binder-rabbit</artifactId> |
| 39 | + <version>3.1.6-SNAPSHOT</version> |
| 40 | + </dependency> |
| 41 | + </dependencies> |
| 42 | + |
| 43 | + <build> |
| 44 | + <plugins> |
| 45 | + <plugin> |
| 46 | + <groupId>org.springframework.experimental</groupId> |
| 47 | + <artifactId>spring-aot-maven-plugin</artifactId> |
| 48 | + <configuration> |
| 49 | + <removeYamlSupport>true</removeYamlSupport> |
| 50 | + </configuration> |
| 51 | + </plugin> |
| 52 | + <plugin> |
| 53 | + <groupId>org.springframework.boot</groupId> |
| 54 | + <artifactId>spring-boot-maven-plugin</artifactId> |
| 55 | + </plugin> |
| 56 | + <plugin> |
| 57 | + <groupId>org.apache.maven.plugins</groupId> |
| 58 | + <artifactId>maven-compiler-plugin</artifactId> |
| 59 | + <configuration> |
| 60 | + <source>8</source> |
| 61 | + <target>8</target> |
| 62 | + </configuration> |
| 63 | + </plugin> |
| 64 | + </plugins> |
| 65 | + </build> |
| 66 | + |
| 67 | +</project> |
0 commit comments