Skip to content

Commit

Permalink
Merge pull request #3 from softvis-research/development
Browse files Browse the repository at this point in the history
merge development into master
  • Loading branch information
rmllr committed Oct 14, 2019
2 parents 7d12ce9 + 69a6eb8 commit a2056c5
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 8 deletions.
11 changes: 9 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
<parent>
<groupId>org.jqassistant.contrib.common</groupId>
<artifactId>parent</artifactId>
<version>1.6.0</version>
<version>1.7.0</version>
</parent>

<groupId>org.jqassistant.contrib.plugin.kieker</groupId>
<artifactId>jqa-kieker-plugin</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>0.0.1</version>

<name>jQAssistant Kieker Plugin</name>
<description>The jQAssistant plugin to scan and to analyze Kieker trace logs.</description>
Expand All @@ -29,6 +29,13 @@
</developer>
</developers>

<scm>
<connection>scm:git:git@github.com:softvis-research/jqa-kieker-plugin.git</connection>
<developerConnection>scm:git:git@github.com:/softvis-research/jqa-kieker-plugin.git</developerConnection>
<url>https://github.com//softvis-research/jqa-kieker-plugin</url>
<tag>HEAD</tag>
</scm>

<licenses>
<license>
<name>GNU General Public License, v3</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
*/
@Label("Call")
public interface CallEventDescriptor extends EventDescriptor, Descriptor {
@Relation("CALLER")
@Relation("CALLED_BY")
MethodDescriptor getCaller();

void setCaller(MethodDescriptor caller);

@Relation("CALLEE")
@Relation("CALLS")
MethodDescriptor getCallee();

void setCallee(MethodDescriptor callee);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*/
@Label("Execution")
public interface ExecutionEventDescriptor extends EventDescriptor, Descriptor {
@Relation("EXECUTION")
@Relation("EXECUTES")
MethodDescriptor getExecutedMethod();

void setExecutedMethod(MethodDescriptor executedMethod);
Expand Down
6 changes: 3 additions & 3 deletions src/main/resources/META-INF/jqassistant-rules/kieker.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</description>
<cypher><![CDATA[
MATCH
(e:Execution)-[:EXECUTION]->(m:Method)
(e:Execution)-[:EXECUTES]->(m:Method)
WITH
m, SUM(e.afterTimestamp - e.beforeTimestamp) AS duration
SET
Expand All @@ -23,9 +23,9 @@
</description>
<cypher><![CDATA[
MATCH
(c:Call)-[:CALLER]->(caller:Method)
(c:Call)-[:CALLED_BY]->(caller:Method)
MATCH
(c:Call)-[:CALLEE]->(callee:Method)
(c:Call)-[:CALLS]->(callee:Method)
MERGE
(caller)-[calls:CALLS]->(callee)
RETURN
Expand Down

0 comments on commit a2056c5

Please sign in to comment.