Skip to content

Commit 20cffbb

Browse files
committed
Update link to jQAssistant Java plugin classpath resolver in comment
1 parent c24a72c commit 20cffbb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

cypher/Typescript_Enrichment/Add_DEPENDS_ON_relationship_to_resolved_modules.cypher

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Propagates "DEPENDS_ON" relations between modules to their resolved modules with a property "resolved:true".
2-
// Inspired by https://github.com/jQAssistant/jqa-java-plugin/blob/f092122b62bb13d597840b64b73b2010bd074d1f/src/main/resources/META-INF/jqassistant-rules/java-classpath.xml#L59
2+
// Inspired by https://github.com/jQAssistant/jqassistant/blob/4cd7face5d6d2953449d8e6ff5b484f00ffbdc2f/plugin/java/src/main/resources/META-INF/jqassistant-rules/java-classpath.xml#L5
33

44
MATCH (module:TS:Module)-[dependsOn:DEPENDS_ON]->(externalModule:TS:ExternalModule)
55
MATCH (externalModule)-[:RESOLVES_TO]->(resolvedModule:TS:Module)

cypher/Typescript_Enrichment/Add_RESOLVES_TO_relationship_for_matching_declarations.cypher

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Adds a relation "RESOLVES_TO" from a Typescript element to an external declaration if their global fully qualified names match.
2-
// Inspired by https://github.com/jQAssistant/jqa-java-plugin/blob/f092122b62bb13d597840b64b73b2010bd074d1f/src/main/resources/META-INF/jqassistant-rules/java-classpath.xml#L5
2+
// Inspired by https://github.com/jQAssistant/jqassistant/blob/4cd7face5d6d2953449d8e6ff5b484f00ffbdc2f/plugin/java/src/main/resources/META-INF/jqassistant-rules/java-classpath.xml#L5
33
// Related to https://github.com/jqassistant-plugin/jqassistant-typescript-plugin/issues/35
44

55
MATCH (element:TS&!ExternalDeclaration)

cypher/Typescript_Enrichment/Add_RESOLVES_TO_relationship_for_matching_modules.cypher

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Adds a relation "RESOLVES_TO" from an external module to a module if their global fully qualified names match.
2-
// Inspired by https://github.com/jQAssistant/jqa-java-plugin/blob/f092122b62bb13d597840b64b73b2010bd074d1f/src/main/resources/META-INF/jqassistant-rules/java-classpath.xml#L5
2+
// Inspired by https://github.com/jQAssistant/jqassistant/blob/4cd7face5d6d2953449d8e6ff5b484f00ffbdc2f/plugin/java/src/main/resources/META-INF/jqassistant-rules/java-classpath.xml#L5
33
// Related to https://github.com/jqassistant-plugin/jqassistant-typescript-plugin/issues/35
44

55
MATCH (module:TS:Module)

0 commit comments

Comments
 (0)