Skip to content

Commit 3d7bca8

Browse files
committed
Add profiling information on each traversal step - count hits vs elastic controller
Add tagging for each step via ASG strategy (all steps must have tags)
1 parent 40d803f commit 3d7bca8

File tree

30 files changed

+147
-46
lines changed

30 files changed

+147
-46
lines changed

es-plugins/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>fuse</artifactId>
77
<groupId>com.yangdb</groupId>
8-
<version>0.5-SNAPSHOT</version>
8+
<version>0.5</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<artifactId>es-plugins</artifactId>

fuse-asg/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>fuse</artifactId>
55
<groupId>com.yangdb</groupId>
6-
<version>0.5-SNAPSHOT</version>
6+
<version>0.5</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99

fuse-core/pom.xml

Lines changed: 46 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,48 @@
33
<parent>
44
<artifactId>fuse</artifactId>
55
<groupId>com.yangdb</groupId>
6-
<version>0.5-SNAPSHOT</version>
6+
<version>0.5</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
9-
109
<artifactId>fuse-core</artifactId>
1110

11+
<name>fuse-core</name>
12+
<description>
13+
YANGDB Open-source, Scalable, Non-native Graph database (Powered by Elasticsearch)
14+
</description>
15+
<url>http://www.yangdb.org/</url>
16+
17+
<mailingLists>
18+
<mailingList>
19+
<name>Apache Yang.DB Developers</name>
20+
<post>yang.db.dev@gmail.com</post>
21+
</mailingList>
22+
</mailingLists>
23+
24+
<organization>
25+
<name>The YangDb Graph Database Project</name>
26+
</organization>
27+
28+
<scm>
29+
<connection>scm:git:git:https://github.com/YANG-DB/yang-db.git</connection>
30+
<url>git clone https://github.com/YANG-DB/yang-db.git</url>
31+
</scm>
32+
33+
<licenses>
34+
<license>
35+
<name>The 2.0 version of the Apache License was approved by the ASF in 2004.</name>
36+
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
37+
</license>
38+
</licenses>
39+
40+
<developers>
41+
<developer>
42+
<id>Yang.DB</id>
43+
<name>The Yang.DB Team</name>
44+
<organization>www.yangdb.org</organization>
45+
</developer>
46+
</developers>
47+
1248
<properties>
1349
<top.dir>${project.basedir}/..</top.dir>
1450
<checkstyle.skip>true</checkstyle.skip>
@@ -74,6 +110,14 @@
74110
<groupId>org.apache.maven.plugins</groupId>
75111
<artifactId>maven-compiler-plugin</artifactId>
76112
</plugin>
113+
<plugin>
114+
<groupId>org.apache.maven.plugins</groupId>
115+
<artifactId>maven-javadoc-plugin</artifactId>
116+
</plugin>
117+
<plugin>
118+
<groupId>org.apache.maven.plugins</groupId>
119+
<artifactId>maven-gpg-plugin</artifactId>
120+
</plugin>
77121
<plugin>
78122
<groupId>org.apache.maven.plugins</groupId>
79123
<artifactId>maven-source-plugin</artifactId>

fuse-domain/fuse-domain-dragons/fuse-domain-dragons-assembly/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>fuse-domain-dragons</artifactId>
77
<groupId>com.yangdb</groupId>
8-
<version>0.5-SNAPSHOT</version>
8+
<version>0.5</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<packaging>pom</packaging>

fuse-domain/fuse-domain-dragons/fuse-domain-dragons-datagen/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>fuse-domain-dragons</artifactId>
55
<groupId>com.yangdb</groupId>
6-
<version>0.5-SNAPSHOT</version>
6+
<version>0.5</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99

fuse-domain/fuse-domain-dragons/fuse-domain-dragons-ext/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>fuse-domain-dragons</artifactId>
77
<groupId>com.yangdb</groupId>
8-
<version>0.5-SNAPSHOT</version>
8+
<version>0.5</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

fuse-domain/fuse-domain-dragons/fuse-domain-dragons-test/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>fuse-domain-dragons</artifactId>
77
<groupId>com.yangdb</groupId>
8-
<version>0.5-SNAPSHOT</version>
8+
<version>0.5</version>
99
</parent>
1010

1111
<artifactId>fuse-domain-dragons-test</artifactId>

fuse-domain/fuse-domain-dragons/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>fuse-domain</artifactId>
77
<groupId>com.yangdb</groupId>
8-
<version>0.5-SNAPSHOT</version>
8+
<version>0.5</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

fuse-domain/fuse-domain-knowledge/fuse-domain-knowledge-assembly/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>fuse-domain-knowledge</artifactId>
77
<groupId>com.yangdb</groupId>
8-
<version>0.5-SNAPSHOT</version>
8+
<version>0.5</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<packaging>pom</packaging>

fuse-domain/fuse-domain-knowledge/fuse-domain-knowledge-datagen/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>fuse-domain-knowledge</artifactId>
77
<groupId>com.yangdb</groupId>
8-
<version>0.5-SNAPSHOT</version>
8+
<version>0.5</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

0 commit comments

Comments
 (0)