10 lines
201 B
Groovy
10 lines
201 B
Groovy
|
plugins {
|
||
|
id 'com.ly.smart-doc'
|
||
|
}
|
||
|
|
||
|
println "apply plugin 'com.ly.smart-doc' for ${project.name}"
|
||
|
|
||
|
smartdoc {
|
||
|
configFile = file("src/main/resources/smart-doc.json")
|
||
|
include 'net.risesoft*'
|
||
|
}
|