15 lines
273 B
Groovy
15 lines
273 B
Groovy
plugins {
|
|
id 'groowt-conventions'
|
|
id 'java-library'
|
|
id 'groowt-publish'
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
create('groowtGradleModel', MavenPublication) {
|
|
artifactId = 'groowt-gradle-model'
|
|
from components.java
|
|
}
|
|
}
|
|
}
|