From e5840cd48f2be3f1ed2519833e52e23b900f277d Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Tue, 16 Jun 2015 17:30:09 +0100 Subject: [PATCH] Set the group on the root project so the docs are published correctly See gh-37 --- build.gradle | 4 ++++ spring-restdocs/build.gradle | 2 -- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 4f150724..3617a140 100644 --- a/build.gradle +++ b/build.gradle @@ -7,6 +7,10 @@ buildscript { } } +allprojects { + group = 'org.springframework.restdocs' +} + apply plugin: 'samples' ext { diff --git a/spring-restdocs/build.gradle b/spring-restdocs/build.gradle index 0cca8f02..65056ff4 100644 --- a/spring-restdocs/build.gradle +++ b/spring-restdocs/build.gradle @@ -3,8 +3,6 @@ ext { jacocoVersion = '0.7.2.201409121644' } -group = 'org.springframework.restdocs' - apply plugin: 'maven' apply plugin: 'sonar-runner'