Files
spring-cloud-consul/spring-cloud-consul-integration-tests/pom.xml
spencergibb 418ee24088 Check if class is registered already.
In ConfigData promotion (promoting a bean from bootstrap to the application context) check to see if there is a bean of that name before registering again.

Fixes gh-687
2020-12-14 13:12:51 -05:00

22 lines
828 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-consul</artifactId>
<version>3.0.0-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
<artifactId>spring-cloud-consul-integration-tests</artifactId>
<name>spring-cloud-consul-integration-tests</name>
<description>spring-cloud-consul-integration-tests</description>
<packaging>pom</packaging>
<modules>
<module>spring-cloud-consul-bootstrap-tests</module>
<module>spring-cloud-consul-configdata-tests</module>
</modules>
</project>