You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mnemonic.apache.org by ga...@apache.org on 2020/11/05 08:45:38 UTC

[mnemonic] branch master updated: MNEMONIC-546: Create build.gradle for subproject mnemonic-common

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

garyw pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mnemonic.git


The following commit(s) were added to refs/heads/master by this push:
     new 90fbb04  MNEMONIC-546: Create build.gradle for subproject mnemonic-common
90fbb04 is described below

commit 90fbb04793e2cde2cf51cfcd353785d87f074210
Author: Gary <ga...@apache.org>
AuthorDate: Sat Oct 31 14:00:00 2020 -0700

    MNEMONIC-546: Create build.gradle for subproject mnemonic-common
---
 mnemonic-common/build.gradle | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/mnemonic-common/build.gradle b/mnemonic-common/build.gradle
index 6c81726..1a81bc1 100644
--- a/mnemonic-common/build.gradle
+++ b/mnemonic-common/build.gradle
@@ -17,12 +17,12 @@
 
 description = 'mnemonic-common'
 dependencies {
-    compile group: 'org.apache.commons', name: 'commons-lang3', version:'3.4'
-    compile group: 'org.slf4j', name: 'slf4j-api', version:'1.7.21'
-    compile group: 'org.slf4j', name: 'jul-to-slf4j', version:'1.7.21'
-    compile group: 'org.slf4j', name: 'jcl-over-slf4j', version:'1.7.21'
-    compile group: 'log4j', name: 'log4j', version:'1.2.17'
-    compile group: 'org.slf4j', name: 'slf4j-log4j12', version:'1.7.21'
-    testCompile group: 'org.testng', name: 'testng', version:'6.8.17'
+    implementation 'org.apache.commons:commons-lang3'
+    implementation 'org.slf4j:slf4j-api'
+    implementation 'org.slf4j:jul-to-slf4j'
+    implementation 'org.slf4j:jcl-over-slf4j'
+    implementation 'log4j:log4j'
+    implementation 'org.slf4j:slf4j-log4j12'
+    testImplementation 'org.testng:testng'
 }
 test.useTestNG()