|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | + |
| 3 | +<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"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
| 5 | + |
| 6 | + <parent> |
| 7 | + <groupId>org.springframework.modulith</groupId> |
| 8 | + <artifactId>spring-modulith-events</artifactId> |
| 9 | + <version>1.4.0-SNAPSHOT</version> |
| 10 | + </parent> |
| 11 | + |
| 12 | + <name>Spring Modulith - Events - Spring Cloud Stream support</name> |
| 13 | + <artifactId>spring-modulith-events-scs</artifactId> |
| 14 | + |
| 15 | + <properties> |
| 16 | + <module.name>org.springframework.modulith.events.scs</module.name> |
| 17 | + |
| 18 | + <!-- integration testing versions --> |
| 19 | + <spring-boot.version>3.4.0</spring-boot.version> |
| 20 | + <spring-cloud.version>2024.0.0</spring-cloud.version> |
| 21 | + <spring-cloud-stream-schema.version>2.2.1.RELEASE</spring-cloud-stream-schema.version> |
| 22 | + <avro.version>1.11.4</avro.version> |
| 23 | + |
| 24 | + <maven-surefire-plugin.version>3.0.0-M5</maven-surefire-plugin.version> |
| 25 | + </properties> |
| 26 | + |
| 27 | + <developers> |
| 28 | + <developer> |
| 29 | + <name>Ivan Garcia Sainz-Aja</name> |
| 30 | + <email>ivangsa@gmail.com</email> |
| 31 | + <organization>ZenWave360</organization> |
| 32 | + <organizationUrl>https://github.com/ZenWave360</organizationUrl> |
| 33 | + </developer> |
| 34 | + </developers> |
| 35 | + |
| 36 | + <dependencyManagement> |
| 37 | + <dependencies> |
| 38 | + <dependency> |
| 39 | + <groupId>org.springframework.boot</groupId> |
| 40 | + <artifactId>spring-boot-dependencies</artifactId> |
| 41 | + <version>${spring-boot.version}</version> |
| 42 | + <type>pom</type> |
| 43 | + <scope>import</scope> |
| 44 | + </dependency> |
| 45 | + <dependency> |
| 46 | + <groupId>org.springframework.cloud</groupId> |
| 47 | + <artifactId>spring-cloud-dependencies</artifactId> |
| 48 | + <version>${spring-cloud.version}</version> |
| 49 | + <type>pom</type> |
| 50 | + <scope>import</scope> |
| 51 | + </dependency> |
| 52 | + </dependencies> |
| 53 | + </dependencyManagement> |
| 54 | + |
| 55 | + <dependencies> |
| 56 | + <dependency> |
| 57 | + <groupId>org.springframework.modulith</groupId> |
| 58 | + <artifactId>spring-modulith-api</artifactId> |
| 59 | + <version>${project.parent.version}</version> |
| 60 | + </dependency> |
| 61 | + <dependency> |
| 62 | + <groupId>org.springframework.modulith</groupId> |
| 63 | + <artifactId>spring-modulith-events-core</artifactId> |
| 64 | + <version>${project.parent.version}</version> |
| 65 | + </dependency> |
| 66 | + <dependency> |
| 67 | + <groupId>org.springframework.cloud</groupId> |
| 68 | + <artifactId>spring-cloud-stream</artifactId> |
| 69 | + </dependency> |
| 70 | + |
| 71 | + <!-- optional --> |
| 72 | + <dependency> |
| 73 | + <groupId>org.apache.avro</groupId> |
| 74 | + <artifactId>avro</artifactId> |
| 75 | + <version>${avro.version}</version> |
| 76 | + <optional>true</optional> |
| 77 | + </dependency> |
| 78 | + <dependency> |
| 79 | + <groupId>com.fasterxml.jackson.dataformat</groupId> |
| 80 | + <artifactId>jackson-dataformat-avro</artifactId> |
| 81 | + <optional>true</optional> |
| 82 | + </dependency> |
| 83 | + <dependency> |
| 84 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 85 | + <artifactId>jackson-databind</artifactId> |
| 86 | + <optional>true</optional> |
| 87 | + </dependency> |
| 88 | + |
| 89 | + <!-- Testing --> |
| 90 | + <dependency> |
| 91 | + <groupId>org.springframework.boot</groupId> |
| 92 | + <artifactId>spring-boot-starter-test</artifactId> |
| 93 | + <scope>test</scope> |
| 94 | + </dependency> |
| 95 | + <dependency> |
| 96 | + <groupId>org.springframework.boot</groupId> |
| 97 | + <artifactId>spring-boot-starter-jdbc</artifactId> |
| 98 | + <scope>test</scope> |
| 99 | + </dependency> |
| 100 | + <dependency> |
| 101 | + <groupId>com.h2database</groupId> |
| 102 | + <artifactId>h2</artifactId> |
| 103 | + <scope>test</scope> |
| 104 | + </dependency> |
| 105 | + |
| 106 | + <dependency> |
| 107 | + <groupId>org.springframework.cloud</groupId> |
| 108 | + <artifactId>spring-cloud-starter-stream-kafka</artifactId> |
| 109 | + <scope>test</scope> |
| 110 | + </dependency> |
| 111 | + <dependency> |
| 112 | + <groupId>org.springframework.kafka</groupId> |
| 113 | + <artifactId>spring-kafka-test</artifactId> |
| 114 | + <scope>test</scope> |
| 115 | + </dependency> |
| 116 | + |
| 117 | + <dependency> |
| 118 | + <groupId>org.springframework.modulith</groupId> |
| 119 | + <artifactId>spring-modulith-starter-jdbc</artifactId> |
| 120 | + <version>${parent.version}</version> |
| 121 | + <scope>test</scope> |
| 122 | + </dependency> |
| 123 | + </dependencies> |
| 124 | + |
| 125 | + <build> |
| 126 | + <plugins> |
| 127 | + <plugin> |
| 128 | + <groupId>org.apache.maven.plugins</groupId> |
| 129 | + <artifactId>maven-surefire-plugin</artifactId> |
| 130 | + <version>${maven-surefire-plugin.version}</version> |
| 131 | + <configuration> |
| 132 | + <!-- Force alphabetical order to have a reproducible build --> |
| 133 | + <runOrder>alphabetical</runOrder> |
| 134 | + <excludes> |
| 135 | + <exclude>**/*IT*</exclude> |
| 136 | + <exclude>**/*IntTest*</exclude> |
| 137 | + </excludes> |
| 138 | + </configuration> |
| 139 | + </plugin> |
| 140 | + </plugins> |
| 141 | + </build> |
| 142 | + |
| 143 | +</project> |
0 commit comments