You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@polygene.apache.org by ni...@apache.org on 2017/07/10 06:53:27 UTC

[25/50] polygene-java git commit: Fixed bug that caused some polygene generator build failures.. Is those disabled in Jenkins, or why didn't it show up in the CI?

Fixed bug that caused some polygene generator build failures.. Is those disabled in Jenkins, or why didn't it show up in the CI?


Project: http://git-wip-us.apache.org/repos/asf/polygene-java/repo
Commit: http://git-wip-us.apache.org/repos/asf/polygene-java/commit/52f36f31
Tree: http://git-wip-us.apache.org/repos/asf/polygene-java/tree/52f36f31
Diff: http://git-wip-us.apache.org/repos/asf/polygene-java/diff/52f36f31

Branch: refs/heads/es-jooq
Commit: 52f36f319a20c5e72cbb2a87a0f6055757c84815
Parents: 41fbc54
Author: niclas <ni...@hedhman.org>
Authored: Fri Jun 30 13:49:28 2017 +0800
Committer: niclas <ni...@hedhman.org>
Committed: Fri Jun 30 13:49:28 2017 +0800

----------------------------------------------------------------------
 tools/generator-polygene/app/index.js | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/polygene-java/blob/52f36f31/tools/generator-polygene/app/index.js
----------------------------------------------------------------------
diff --git a/tools/generator-polygene/app/index.js b/tools/generator-polygene/app/index.js
index f248eda..8cbd9fd 100644
--- a/tools/generator-polygene/app/index.js
+++ b/tools/generator-polygene/app/index.js
@@ -194,6 +194,7 @@ module.exports = generators.Base.extend(
                         this.log('Entity Stores:', answers.entitystore);
                         this.log('Indexing:', answers.indexing);
                         this.log('Caching:', answers.caching);
+                        this.log('Metrics:', answers.metrics);
                         this.log('Features:', answers.features);
                         answers.dbpool = answers.dbpool === undefined ? "DBCP" : answers.dbpool;
                         polygene.name = answers.name;
@@ -202,6 +203,7 @@ module.exports = generators.Base.extend(
                         polygene.features = answers.features;
                         polygene.indexing = answers.indexing;
                         polygene.entitystore = answers.entitystore;
+                        polygene.metrics = answers.metrics;
                         polygene.caching = answers.caching;
                     }.bind(this)
                 );