This commit is contained in:
xtex 2020-08-11 11:25:23 +08:00 committed by Yuhui Huang
parent c3f19d2c4a
commit 7f674f237b

View File

@ -14,6 +14,7 @@ version '3.0'
subprojects {
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'maven-publish'
apply plugin: 'com.github.hierynomus.license'
repositories {
@ -46,6 +47,17 @@ subprojects {
java='SLASHSTAR_STYLE'
}
}
publishing {
publications {
maven(MavenPublication) {
from components.java
}
}
repositories {
mavenLocal()
}
}
}
defaultTasks 'clean', 'build'