This is an automated email from the ASF dual-hosted git repository.

toulmean pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-tuweni.git


The following commit(s) were added to refs/heads/master by this push:
     new e1970be  make eth-faucet part of the start scripts
e1970be is described below

commit e1970beda1e638757eca16261e442a01a606d97e
Author: Antoine Toulme <[email protected]>
AuthorDate: Tue Dec 15 00:24:04 2020 -0800

    make eth-faucet part of the start scripts
---
 dist/build.gradle       | 1 +
 eth-faucet/build.gradle | 8 +++++---
 2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/dist/build.gradle b/dist/build.gradle
index c4f00f3..42274a2 100644
--- a/dist/build.gradle
+++ b/dist/build.gradle
@@ -92,6 +92,7 @@ distributions {
         from { project(':hobbits-relayer').startScripts.outputs.files }
         from { project(':eth-client-app').startScripts.outputs.files }
         from { project(':devp2p').startScripts.outputs.files }
+        from { project(':eth-faucet').startScripts.outputs.files }
         fileMode = 0755
       }
     }
diff --git a/eth-faucet/build.gradle b/eth-faucet/build.gradle
index 31eccb8..2f57379 100644
--- a/eth-faucet/build.gradle
+++ b/eth-faucet/build.gradle
@@ -14,16 +14,18 @@
 description = 'Ethereum Faucet'
 apply plugin: 'org.springframework.boot'
 apply plugin: 'org.jetbrains.kotlin.plugin.spring'
+apply plugin: 'application'
 
 bootJar {
-  enabled = true
-  mainClassName = 'org.apache.tuweni.faucet.FaucetApplicationKt'
+  enabled = false
 }
 
 jar {
-  enabled = false
+  enabled = true
 }
 
+mainClassName = 'org.apache.tuweni.faucet.FaucetApplicationKt'
+
 dependencies {
   implementation 'com.fasterxml.jackson.core:jackson-databind'
   implementation("com.fasterxml.jackson.module:jackson-module-kotlin")


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to