-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathbuild.gradle
39 lines (34 loc) · 977 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
buildscript {
repositories {
maven { url "https://repo.grails.org/grails/core/" }
}
dependencies {
classpath platform("org.grails:grails-bom:${grailsVersion}")
classpath "org.grails:grails-gradle-plugin"
classpath "com.adarshr.test-logger:com.adarshr.test-logger.gradle.plugin:4.0.0"
}
}
allprojects {
repositories {
maven { url "https://repo.grails.org/grails/core" }
}
}
version project.projectVersion
group "org.grails.plugins"
subprojects {
version project.projectVersion
group "org.grails.plugins"
if (project.name == 'grails-db-reverse-engineer') {
apply plugin: "org.grails.grails-publish"
grailsPublish {
githubSlug = 'grails-plugins/grails-db-reverse-engineer'
license {
name = 'Apache-2.0'
}
title = 'DB Reverse Engineering Plugin'
desc = 'Given a database, this plugin generates Grails domain classes from it.'
developers = [burtbeckwith: "Burt Beckwith"]
}
}
}
apply from: rootProject.file("gradle/docs.gradle")