gnunet-svn
[Top][All Lists]
Advanced

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

[libeufin] branch master updated: shared module skeleton


From: gnunet
Subject: [libeufin] branch master updated: shared module skeleton
Date: Thu, 12 Dec 2019 14:48:31 +0100

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

marcello pushed a commit to branch master
in repository libeufin.

The following commit(s) were added to refs/heads/master by this push:
     new 66e46bd  shared module skeleton
66e46bd is described below

commit 66e46bd3b4824458ddcf537616670dec7ee58f8c
Author: Marcello Stanisci <address@hidden>
AuthorDate: Thu Dec 12 14:48:13 2019 +0100

    shared module skeleton
---
 nexus/src/test/kotlin/ImportTest.kt | 12 +++++++++
 util/build.gradle                   | 49 +++++++++++++++++++++++++++++++++++++
 util/src/main/kotlin/ImportTest.kt  |  3 +++
 3 files changed, 64 insertions(+)

diff --git a/nexus/src/test/kotlin/ImportTest.kt 
b/nexus/src/test/kotlin/ImportTest.kt
new file mode 100644
index 0000000..2f200b7
--- /dev/null
+++ b/nexus/src/test/kotlin/ImportTest.kt
@@ -0,0 +1,12 @@
+package tech.libeufin.nexus
+
+import org.junit.Test
+import tech.libeufin.util.IMPORT
+
+class ImportTest {
+
+    @Test
+    fun importTest() {
+        println(IMPORT)
+    }
+}
\ No newline at end of file
diff --git a/util/build.gradle b/util/build.gradle
new file mode 100644
index 0000000..8a60f2e
--- /dev/null
+++ b/util/build.gradle
@@ -0,0 +1,49 @@
+plugins {
+    id 'java'
+    id 'org.jetbrains.kotlin.jvm' version '1.3.50'
+    id 'application'
+}
+
+
+sourceCompatibility = "11"
+targetCompatibility = "11"
+version '1.0-snapshot'
+
+
+compileKotlin {
+
+    kotlinOptions {
+        jvmTarget = "11"
+    }
+}
+
+compileTestKotlin {
+    kotlinOptions {
+        jvmTarget = "11"
+    }
+}
+
+sourceSets {
+    main.java.srcDirs = ['src/main/java', 'src/main/kotlin']
+}
+
+dependencies {
+    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
+    implementation "io.ktor:ktor-gson:1.1.5"
+    implementation group: 'io.ktor', name: 'ktor-gson', version: '0.9.0'
+    implementation "org.jetbrains.exposed:exposed:0.17.6"
+    implementation "io.ktor:ktor-server-netty:1.2.4"
+    implementation "ch.qos.logback:logback-classic:1.2.3"
+    implementation group: 'javax.xml.bind', name: 'jaxb-api', version: '2.3.1'
+    implementation "javax.xml.bind:jaxb-api:2.3.0"
+    implementation group: 'xerces', name: 'xercesImpl', version: 
'2.6.2-jaxb-1.0.6'
+    implementation "javax.activation:activation:1.1"
+    implementation "org.glassfish.jaxb:jaxb-runtime:2.3.1"
+    implementation 'org.apache.santuario:xmlsec:2.1.4'
+    implementation group: 'org.bouncycastle', name: 'bcprov-jdk16', version: 
'1.45'
+    implementation group: 'org.xerial', name: 'sqlite-jdbc', version: '3.28.0'
+
+    testImplementation group: 'junit', name: 'junit', version: '4.12'
+    testImplementation 'org.jetbrains.kotlin:kotlin-test-junit:1.3.50'
+    testImplementation 'org.jetbrains.kotlin:kotlin-test:1.3.50'
+}
diff --git a/util/src/main/kotlin/ImportTest.kt 
b/util/src/main/kotlin/ImportTest.kt
new file mode 100644
index 0000000..c4f0bd6
--- /dev/null
+++ b/util/src/main/kotlin/ImportTest.kt
@@ -0,0 +1,3 @@
+package tech.libeufin.util
+
+const val IMPORT = "third party"
\ No newline at end of file

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

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