Skip to content

Commit a2056c5

Browse files
authored
Merge pull request #3 from softvis-research/development
merge development into master
2 parents 7d12ce9 + 69a6eb8 commit a2056c5

4 files changed

Lines changed: 15 additions & 8 deletions

File tree

pom.xml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
<parent>
77
<groupId>org.jqassistant.contrib.common</groupId>
88
<artifactId>parent</artifactId>
9-
<version>1.6.0</version>
9+
<version>1.7.0</version>
1010
</parent>
1111

1212
<groupId>org.jqassistant.contrib.plugin.kieker</groupId>
1313
<artifactId>jqa-kieker-plugin</artifactId>
14-
<version>1.0.0-SNAPSHOT</version>
14+
<version>0.0.1</version>
1515

1616
<name>jQAssistant Kieker Plugin</name>
1717
<description>The jQAssistant plugin to scan and to analyze Kieker trace logs.</description>
@@ -29,6 +29,13 @@
2929
</developer>
3030
</developers>
3131

32+
<scm>
33+
<connection>scm:git:[email protected]:softvis-research/jqa-kieker-plugin.git</connection>
34+
<developerConnection>scm:git:[email protected]:/softvis-research/jqa-kieker-plugin.git</developerConnection>
35+
<url>https://github.com//softvis-research/jqa-kieker-plugin</url>
36+
<tag>HEAD</tag>
37+
</scm>
38+
3239
<licenses>
3340
<license>
3441
<name>GNU General Public License, v3</name>

src/main/java/org/jqassistant/contrib/plugin/kieker/api/model/CallEventDescriptor.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
*/
1010
@Label("Call")
1111
public interface CallEventDescriptor extends EventDescriptor, Descriptor {
12-
@Relation("CALLER")
12+
@Relation("CALLED_BY")
1313
MethodDescriptor getCaller();
1414

1515
void setCaller(MethodDescriptor caller);
1616

17-
@Relation("CALLEE")
17+
@Relation("CALLS")
1818
MethodDescriptor getCallee();
1919

2020
void setCallee(MethodDescriptor callee);

src/main/java/org/jqassistant/contrib/plugin/kieker/api/model/ExecutionEventDescriptor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*/
1010
@Label("Execution")
1111
public interface ExecutionEventDescriptor extends EventDescriptor, Descriptor {
12-
@Relation("EXECUTION")
12+
@Relation("EXECUTES")
1313
MethodDescriptor getExecutedMethod();
1414

1515
void setExecutedMethod(MethodDescriptor executedMethod);

src/main/resources/META-INF/jqassistant-rules/kieker.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</description>
1010
<cypher><![CDATA[
1111
MATCH
12-
(e:Execution)-[:EXECUTION]->(m:Method)
12+
(e:Execution)-[:EXECUTES]->(m:Method)
1313
WITH
1414
m, SUM(e.afterTimestamp - e.beforeTimestamp) AS duration
1515
SET
@@ -23,9 +23,9 @@
2323
</description>
2424
<cypher><![CDATA[
2525
MATCH
26-
(c:Call)-[:CALLER]->(caller:Method)
26+
(c:Call)-[:CALLED_BY]->(caller:Method)
2727
MATCH
28-
(c:Call)-[:CALLEE]->(callee:Method)
28+
(c:Call)-[:CALLS]->(callee:Method)
2929
MERGE
3030
(caller)-[calls:CALLS]->(callee)
3131
RETURN

0 commit comments

Comments
 (0)