forked from I2P_Developers/i2p.i2p
Apply java-library plugin to published libraries
This commit is contained in:
@ -1,3 +1,5 @@
|
|||||||
|
apply plugin: 'java-library'
|
||||||
|
|
||||||
archivesBaseName = 'mstreaming'
|
archivesBaseName = 'mstreaming'
|
||||||
|
|
||||||
sourceSets {
|
sourceSets {
|
||||||
@ -14,7 +16,7 @@ sourceSets {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile project(':core')
|
api project(':core')
|
||||||
}
|
}
|
||||||
|
|
||||||
configurations {
|
configurations {
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
apply plugin: 'java-library'
|
||||||
|
|
||||||
sourceSets {
|
sourceSets {
|
||||||
main {
|
main {
|
||||||
java {
|
java {
|
||||||
@ -12,7 +14,7 @@ sourceSets {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile project(':core')
|
api project(':core')
|
||||||
compile project(':apps:ministreaming')
|
api project(':apps:ministreaming')
|
||||||
testCompile project(path: ':apps:ministreaming', configuration: 'tests')
|
testImplementation project(path: ':apps:ministreaming', configuration: 'tests')
|
||||||
}
|
}
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
apply plugin: 'java-library'
|
||||||
|
|
||||||
archivesBaseName = 'i2p'
|
archivesBaseName = 'i2p'
|
||||||
|
|
||||||
sourceSets {
|
sourceSets {
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
apply plugin: 'java-library'
|
||||||
|
|
||||||
sourceSets {
|
sourceSets {
|
||||||
main {
|
main {
|
||||||
java {
|
java {
|
||||||
@ -12,8 +14,8 @@ sourceSets {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile project(':core')
|
api project(':core')
|
||||||
testCompile project(path: ':core', configuration: 'tests')
|
testImplementation project(path: ':core', configuration: 'tests')
|
||||||
}
|
}
|
||||||
|
|
||||||
jar {
|
jar {
|
||||||
|
Reference in New Issue
Block a user