gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[libeufin] branch master updated (547a2f4 -> 626c4bb)


From: gnunet
Subject: [libeufin] branch master updated (547a2f4 -> 626c4bb)
Date: Sun, 14 Jun 2020 15:36:27 +0200

This is an automated email from the git hooks/post-receive script.

dold pushed a change to branch master
in repository libeufin.

    from 547a2f4  code cleanup
     new 78376f7  comments
     new 626c4bb  use 'libeufin-' prefix for binaries

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 gradle/wrapper/gradle-wrapper.properties        |  5 +++--
 nexus/build.gradle                              |  7 ++++---
 nexus/src/main/kotlin/tech/libeufin/nexus/DB.kt | 17 ++++++++++++++++-
 sandbox/build.gradle                            |  3 ++-
 4 files changed, 25 insertions(+), 7 deletions(-)

diff --git a/gradle/wrapper/gradle-wrapper.properties 
b/gradle/wrapper/gradle-wrapper.properties
index 622ab64..1dbda40 100644
--- a/gradle/wrapper/gradle-wrapper.properties
+++ b/gradle/wrapper/gradle-wrapper.properties
@@ -1,5 +1,6 @@
+#Sun Jun 14 17:36:48 IST 2020
+distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-all.zip
 distributionBase=GRADLE_USER_HOME
 distributionPath=wrapper/dists
-distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip
-zipStoreBase=GRADLE_USER_HOME
 zipStorePath=wrapper/dists
+zipStoreBase=GRADLE_USER_HOME
diff --git a/nexus/build.gradle b/nexus/build.gradle
index cca0bf3..7fcfaa7 100644
--- a/nexus/build.gradle
+++ b/nexus/build.gradle
@@ -16,13 +16,12 @@ plugins {
 
 sourceSets {
     main.kotlin.srcDirs = ["src/main/kotlin"]
-    main.kotlin.excludes = ["**/MainDeprecated.kt"]
 }
 
 task installToPrefix(type: Copy) {
     dependsOn(installShadowDist)
     from("build/install/nexus-shadow") {
-        include("**/nexus")
+        include("**/libeufin-nexus")
         include("**/*.jar")
     }
     /**
@@ -88,6 +87,7 @@ dependencies {
 
 application {
     mainClassName = "tech.libeufin.nexus.MainKt"
+    applicationName = "libeufin-nexus"
 }
 
 
@@ -99,4 +99,5 @@ jar {
 
 run {
     standardInput = System.in
-}
\ No newline at end of file
+}
+
diff --git a/nexus/src/main/kotlin/tech/libeufin/nexus/DB.kt 
b/nexus/src/main/kotlin/tech/libeufin/nexus/DB.kt
index f5aab03..9aac051 100644
--- a/nexus/src/main/kotlin/tech/libeufin/nexus/DB.kt
+++ b/nexus/src/main/kotlin/tech/libeufin/nexus/DB.kt
@@ -43,6 +43,10 @@ import java.sql.Connection
 object TalerRequestedPayments : LongIdTable() {
     val preparedPayment = reference("payment", PreparedPaymentsTable)
     val requestUId = text("request_uid")
+
+    /**
+     * Amount in the Taler amount format.
+     */
     val amount = text("amount")
     val exchangeBaseUrl = text("exchange_base_url")
     val wtid = text("wtid")
@@ -170,7 +174,15 @@ object PreparedPaymentsTable : IdTable<String>() {
     /** the UUID representing this payment in the system */
     override val id = text("id").entityId()
     val paymentId = long("paymentId")
+
+    /**
+     * Time when the payment initiation was created.
+     */
     val preparationDate = long("preparationDate")
+
+    /**
+     * First time that this payment request has been submitted successfully.
+     */
     val submissionDate = long("submissionDate").nullable()
     val sum = amount("sum")
     val currency = varchar("currency", length = 3).default("EUR")
@@ -183,7 +195,10 @@ object PreparedPaymentsTable : IdTable<String>() {
     val debitorBic = text("debitorBic")
     val debitorName = text("debitorName").nullable()
 
-    /* Indicates whether the PAIN message was sent to the bank. */
+    /**
+     * Indicates whether the PAIN message was sent to the bank.
+     * FIXME(dold): Overlap with submissionDate?!
+     */
     val submitted = bool("submitted").default(false)
 }
 
diff --git a/sandbox/build.gradle b/sandbox/build.gradle
index f187e99..66c50d4 100644
--- a/sandbox/build.gradle
+++ b/sandbox/build.gradle
@@ -18,7 +18,7 @@ compileKotlin {
 task installToPrefix(type: Copy) {
     dependsOn(installShadowDist)
     from("build/install/sandbox-shadow") {
-        include("**/sandbox")
+        include("**/libeufin-sandbox")
         include("**/*.jar")
     }
     /**
@@ -75,6 +75,7 @@ dependencies {
 
 application {
     mainClassName = "tech.libeufin.sandbox.MainKt"
+    applicationName = "libeufin-sandbox"
 }
 
 

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]