From 14cb20a9f18dacee0c253ad47e960e9e5e43c4b3 Mon Sep 17 00:00:00 2001 From: Sebastien Deleuze Date: Thu, 14 Jan 2016 16:12:27 +0100 Subject: [PATCH] Disable uniqueVersion in order to get a reliable Javadoc link --- spring-web-reactive/README.md | 3 +++ spring-web-reactive/build.gradle | 8 ++++++++ 2 files changed, 11 insertions(+) diff --git a/spring-web-reactive/README.md b/spring-web-reactive/README.md index 4bddcd39ce..a3aa139d1e 100644 --- a/spring-web-reactive/README.md +++ b/spring-web-reactive/README.md @@ -9,6 +9,9 @@ Spring Reactive JAR dependency is available from Spring snapshot repository: - ArtifactId: `spring-reactive` - Version: `0.1.0.BUILD-SNAPSHOT` +## Documentation +See the current [Javadoc][] and [reference docs][]. + ## Sample application [Spring Reactive Playground] is a sample application based on Spring Reactive and on MongoDB, Couchbase and PostgreSQL Reactive database drivers. diff --git a/spring-web-reactive/build.gradle b/spring-web-reactive/build.gradle index dab2f0a712..f46943d550 100644 --- a/spring-web-reactive/build.gradle +++ b/spring-web-reactive/build.gradle @@ -37,6 +37,14 @@ ext { jettyVersion = '9.3.5.v20151012' } +uploadArchives { + repositories { + mavenDeployer { + uniqueVersion = false + } + } +} + javadoc { options.author = true options.addStringOption('Xdoclint:none', '-quiet')