You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mnemonic.apache.org by yz...@apache.org on 2022/01/19 01:23:21 UTC

[mnemonic] branch master updated: MNEMONIC-711: Clean obsoleted content in redis memory service gradle file

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

yzhao 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 25360de  MNEMONIC-711: Clean obsoleted content in redis memory service gradle file
25360de is described below

commit 25360de934f0cc7f6a0c9c62707ecd8745fedd52
Author: byl5088 <by...@gmail.com>
AuthorDate: Mon Jan 17 12:51:32 2022 -0500

    MNEMONIC-711: Clean obsoleted content in redis memory service gradle file
---
 mnemonic-memory-services/mnemonic-redis-service/build.gradle | 8 +-------
 1 file changed, 1 insertion(+), 7 deletions(-)

diff --git a/mnemonic-memory-services/mnemonic-redis-service/build.gradle b/mnemonic-memory-services/mnemonic-redis-service/build.gradle
index fce0cf8..1f8ab2f 100644
--- a/mnemonic-memory-services/mnemonic-redis-service/build.gradle
+++ b/mnemonic-memory-services/mnemonic-redis-service/build.gradle
@@ -24,7 +24,7 @@ description = 'mnemonic-redis-service'
 
 dependencies {
   implementation project(':mnemonic-common')
-  testCompileOnly 'org.testng:testng'
+  
 }
 
 def nativeDir = "$projectDir/src/main/native"
@@ -42,11 +42,6 @@ task copyResources(type: Copy) {
   into "${buildDir}/classes/java/main/native"
 }
 
-shadowJar {
-  minimize()
-  destinationDirectory = file("$projectDir/../service-dist")
-  archiveClassifier = osdetector.classifier
-}
 
 task cleanDist(type: Delete) {
   delete "$nativeDir/dist"
@@ -54,7 +49,6 @@ task cleanDist(type: Delete) {
 
 compileJava.dependsOn cmakeBuild
 processResources.dependsOn copyResources
-build.dependsOn shadowJar
 clean.dependsOn cmakeClean
 clean.dependsOn cleanDist