Remove use of maven plugin

It is no longer necessary to publish Maven metadata about common, core
and other submodules as they are no longer managed as separate libraries
in separate repositories. The only way these modules should be getting
referenced is from within applications in this repository such as
desktop, statsnode, etc. Essentially, we're no longer publishing our
libraries for public consumption.
This commit is contained in:
Chris Beams 2018-11-04 13:19:06 +01:00
parent 394914ef8d
commit 3c1c402d40
No known key found for this signature in database
GPG Key ID: 3D214F8F5BC5ED73
9 changed files with 0 additions and 29 deletions

View File

@ -1,11 +1,7 @@
plugins {
id 'java'
id 'maven'
}
group 'network.bisq'
version '-SNAPSHOT'
sourceCompatibility = 1.10
tasks.withType(JavaCompile) {

View File

@ -12,7 +12,6 @@ buildscript {
plugins {
id 'java'
id 'maven'
id 'com.google.protobuf' version '0.8.5'
}
@ -23,9 +22,6 @@ ext {
platform = osdetector.os == 'osx' ? 'mac' : osdetector.os == 'windows' ? 'win' : osdetector.os
}
group = 'network.bisq'
version = '-SNAPSHOT'
sourceCompatibility = 1.10
tasks.withType(JavaCompile) {

View File

@ -1,11 +1,7 @@
plugins {
id 'java'
id 'maven'
}
group = 'network.bisq'
version = '-SNAPSHOT'
sourceCompatibility = 1.10
tasks.withType(JavaCompile) {

View File

@ -10,12 +10,10 @@ buildscript {
apply plugin: 'java'
apply plugin: 'application'
apply plugin: 'maven'
apply plugin: 'com.github.johnrengelman.shadow'
apply plugin: 'witness'
apply from: 'gradle-witness.gradle'
group = 'network.bisq'
version = '0.8.0-SNAPSHOT'
sourceCompatibility = 1.10

View File

@ -3,9 +3,6 @@ plugins {
id 'application'
}
group = 'network.bisq'
version = '0.8.0-SNAPSHOT'
sourceCompatibility = 1.10
mainClassName = 'bisq.monitor.MonitorMain'

View File

@ -1,11 +1,7 @@
plugins {
id 'java'
id 'maven'
}
group = 'network.bisq'
version = '-SNAPSHOT'
sourceCompatibility = 1.10
repositories {

View File

@ -3,9 +3,6 @@ plugins {
id 'application'
}
group = 'network.bisq'
version = '0.8.0-SNAPSHOT'
sourceCompatibility = 1.10
mainClassName = 'bisq.monitor.MonitorMain'

View File

@ -9,10 +9,8 @@ buildscript {
apply plugin: 'java'
apply plugin: 'application'
apply plugin: 'maven'
apply plugin: 'com.github.johnrengelman.shadow'
group = 'network.bisq'
version = '0.8.0-SNAPSHOT'
sourceCompatibility = 1.10

View File

@ -3,9 +3,6 @@ plugins {
id 'application'
}
group = 'network.bisq'
version = '0.8.0-SNAPSHOT'
sourceCompatibility = 1.10
mainClassName = 'bisq.statistics.StatisticsMain'