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/12/21 20:04:17 UTC

[mnemonic] branch master updated: MNEMONIC-572: Create build.gradle for subproject mnemonic-benches (sort bench)

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 ed6c4d5  MNEMONIC-572: Create build.gradle for subproject mnemonic-benches (sort bench)
ed6c4d5 is described below

commit ed6c4d5b140847e190ddf46fbd0f0d88c1942f9c
Author: Xiaojin Jiao <xj...@gmail.com>
AuthorDate: Mon Dec 21 04:34:11 2020 -0800

    MNEMONIC-572: Create build.gradle for subproject mnemonic-benches (sort bench)
    
    Signed-off-by: Xiaojin Jiao <xj...@gmail.com>
---
 mnemonic-benches/mnemonic-sort-bench/build.gradle | 21 ++++++++++++++++++++-
 1 file changed, 20 insertions(+), 1 deletion(-)

diff --git a/mnemonic-benches/mnemonic-sort-bench/build.gradle b/mnemonic-benches/mnemonic-sort-bench/build.gradle
index 86e792f..29978f0 100644
--- a/mnemonic-benches/mnemonic-sort-bench/build.gradle
+++ b/mnemonic-benches/mnemonic-sort-bench/build.gradle
@@ -16,7 +16,26 @@
  */
 
 description = 'mnemonic-sort-bench'
+
+compileJava {
+  options.compilerArgs = [
+    "-processor", "org.apache.mnemonic.DurableEntityProcessor"
+  ]
+}
+
 dependencies {
-    testCompileOnly 'org.testng:testng'
+  annotationProcessor project(':mnemonic-core')
+  api project(':mnemonic-collections')
+  api project(':mnemonic-computing-services:mnemonic-utilities-service')
+  api 'commons-cli:commons-cli'
+  api 'org.apache.commons:commons-lang3'
+  api 'org.flowcomputing.commons:commons-primitives'
+  api 'org.slf4j:slf4j-api'
+  api 'org.slf4j:jul-to-slf4j'
+  api 'org.slf4j:jcl-over-slf4j'
+  api 'log4j:log4j'
+  api 'org.slf4j:slf4j-log4j12'
+  testCompileOnly 'org.testng:testng'
 }
+
 test.useTestNG()