- Pump up version to 2.0.0 - Some generic polish - All changes around breakage with boot 2.x - Some boot classes has been moved around - You can't no longer have binding key ending with camelCase. - New Binder now has illegal keys. - Some changes to tests as we can directly do end-to-end testing with ENV_VAR_FORMAT as normal keys - Spring data repo changes as now uses Optional - Remove relaxed binder and its tests in favor of new Binder - Some mockito api changes - One Ingored test TextPlainToJsonConversionTest.testTextPlainToJsonConversionOnInput - Relates to #935 Cache metric export properties Add code formatting guidelines Rearranged files
78 lines
2.4 KiB
XML
78 lines
2.4 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">
|
|
<parent>
|
|
<artifactId>spring-cloud-stream-parent</artifactId>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<<<<<<< e2c214b34e3f5b179799e6d5e132d72a8cb00a2b
|
|
<version>1.3.1.BUILD-SNAPSHOT</version>
|
|
=======
|
|
<version>2.0.0.BUILD-SNAPSHOT</version>
|
|
>>>>>>> Upgrade build to boot 2.x
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>spring-cloud-stream-schema</artifactId>
|
|
<properties>
|
|
<avro.version>1.8.1</avro.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-stream</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.avro</groupId>
|
|
<artifactId>avro</artifactId>
|
|
<version>${avro.version}</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-stream-test-support</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-stream-test-support-internal</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-stream-schema-server</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.avro</groupId>
|
|
<artifactId>avro-maven-plugin</artifactId>
|
|
<version>${avro.version}</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>generate-test-sources</phase>
|
|
<goals>
|
|
<goal>schema</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<testOutputDirectory>${project.basedir}/target/generated-test-sources</testOutputDirectory>
|
|
<testSourceDirectory>${project.basedir}/src/test/resources/schemas</testSourceDirectory>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|