No longer create ConsulLifecycle bean by default. It is now deprecated. New auto registration is not created if user has created ConsulLifecycle bean.
45 lines
1.4 KiB
XML
45 lines
1.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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-consul</artifactId>
|
|
<version>1.2.0.BUILD-SNAPSHOT</version>
|
|
</parent>
|
|
<artifactId>spring-cloud-consul-docs</artifactId>
|
|
<packaging>pom</packaging>
|
|
<name>Spring Cloud Consul Docs</name>
|
|
<description>Spring Cloud Docs</description>
|
|
<properties>
|
|
<docs.main>spring-cloud-consul</docs.main>
|
|
<main.basedir>${basedir}/..</main.basedir>
|
|
<docs.whitelisted.branches>1.0.x</docs.whitelisted.branches>
|
|
</properties>
|
|
<profiles>
|
|
<profile>
|
|
<id>docs</id>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.asciidoctor</groupId>
|
|
<artifactId>asciidoctor-maven-plugin</artifactId>
|
|
<inherited>false</inherited>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
<inherited>false</inherited>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
<inherited>false</inherited>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
</project>
|