enable build scans;

removed bad project dependency on hibernate-gradle-plugin in documentation
This commit is contained in:
Steve Ebersole 2016-09-26 17:33:20 -05:00
parent dda90ef3d0
commit e3bee9eede
2 changed files with 16 additions and 7 deletions

View File

@ -7,12 +7,6 @@ import org.apache.tools.ant.filters.ReplaceTokens
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
*/
apply plugin: 'eclipse'
apply plugin: 'idea'
apply from: "./libraries.gradle"
apply from: "./databases.gradle"
buildscript {
repositories {
mavenCentral()
@ -37,6 +31,15 @@ buildscript {
}
}
plugins {
id 'com.gradle.build-scan' version '1.1.1'
}
apply plugin: 'eclipse'
apply plugin: 'idea'
apply from: "./libraries.gradle"
apply from: "./databases.gradle"
allprojects {
repositories {
mavenCentral()
@ -423,6 +426,13 @@ task wrapper(type: Wrapper) {
gradleVersion = expectedGradleVersion
}
buildScan {
licenseAgreementUrl = 'https://gradle.com/terms-of-service'
licenseAgree = 'yes'
}
def excludeAllLowLevelBugsExcept(String[] bugTypes){
def writer = new StringWriter()
def xml = new groovy.xml.MarkupBuilder(writer);

View File

@ -19,7 +19,6 @@ buildscript {
}
dependencies {
classpath 'org.asciidoctor:asciidoctor-gradle-plugin:1.5.2'
classpath "org.hibernate:hibernate-gradle-plugin:$hibernateTargetVersion"
}
}