[MINOR] Distribution tweaks (#60)

* [minor] distribution tweaks

* the 'pantheon:client' project is empty, and results in an empty jar, delete
* clique hard codes a version, delete so the parent takes effect
* clique does not describe it's jar, add description
* evmtools does not describe it's jar, add description.

results in
* clique-1.0.0-SNAPSHOT -> pantheon-clique-0.8.0-RC
* evmtools-0.8.0-SNAPSHOT -> pantheon-evmtools-0.8.0-RC
* client-0.8.0-SNAPSHOT -> *deleted*

* spotless formatting on the gradle file

Signed-off-by: Adrian Sutton <adrian.sutton@consensys.net>
pull/2/head
Danno Ferrin 6 years ago committed by GitHub
parent 681b17cce1
commit 43f92f7f20
  1. 1
      acceptance-tests/build.gradle
  2. 11
      consensus/clique/build.gradle
  3. 8
      ethereum/evmtool/build.gradle
  4. 1
      pantheon/build.gradle
  5. 1
      settings.gradle

@ -4,7 +4,6 @@ dependencies {
testRuntime 'org.apache.logging.log4j:log4j-slf4j-impl'
testImplementation project(':crypto')
testImplementation project(':ethereum:client')
testImplementation project(':ethereum:eth')
testImplementation project(':ethereum:core')
testImplementation project(':ethereum:jsonrpc')

@ -1,9 +1,12 @@
plugins { id 'java' }
version '1.0.0-SNAPSHOT'
sourceCompatibility = 1.8
jar {
baseName 'pantheon-clique'
manifest {
attributes('Implementation-Title': baseName,
'Implementation-Version': project.version)
}
}
repositories { mavenCentral() }

@ -0,0 +1,8 @@
jar {
baseName 'pantheon-evmtool'
manifest {
attributes(
'Implementation-Title': baseName,
'Implementation-Version': project.version)
}
}

@ -15,7 +15,6 @@ dependencies {
implementation project(':consensus:ibft')
implementation project(':consensus:clique')
implementation project(':ethereum:eth')
implementation project(':ethereum:client')
implementation project(':ethereum:core')
implementation project(':ethereum:rlp')
implementation project(':ethereum:p2p')

@ -12,7 +12,6 @@ include 'ethereum:jsonrpc'
include 'ethereum:referencetests'
include 'ethereum:core'
include 'ethereum:rlp'
include 'ethereum:client'
include 'ethereum:eth'
include 'ethereum:trie'
include 'pantheon'

Loading…
Cancel
Save