[DEBUG] Scanning /Info.xml
[DEBUG] Cache miss for discriminators [Java, Package, File, Directory].
MATCH (f:Xml) RETURN f.fileName
<?xml version="1.0" encoding="UTF-8"?>
<customXml>    <info>        <sub>one</sub>        <sub>two</sub>        <sub>three</sub>    </info></customXml><?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  <modelVersion>4.0.0</modelVersion>
  <groupId>org.myorg.helloworld</groupId>  <artifactId>hello-world</artifactId>  <version>1.0-SNAPSHOT</version>
  <name>hello-world</name>  <!-- FIXME change it to the project's website -->
  <properties>    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>    <maven.compiler.source>1.7</maven.compiler.source>    <maven.compiler.target>1.7</maven.compiler.target>  </properties>
  <dependencies>    <dependency>      <groupId>junit</groupId>      <artifactId>junit</artifactId>      <version>4.11</version>      <scope>test</scope>    </dependency>  </dependencies>
  <build>    <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->      <plugins>        <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->        <plugin>          <artifactId>maven-clean-plugin</artifactId>          <version>3.1.0</version>        </plugin>        <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->        <plugin>          <artifactId>maven-resources-plugin</artifactId>          <version>3.0.2</version>        </plugin>        <plugin>          <artifactId>maven-compiler-plugin</artifactId>          <version>3.8.0</version>        </plugin>        <plugin>          <artifactId>maven-surefire-plugin</artifactId>          <version>2.22.1</version>        </plugin>        <plugin>          <artifactId>maven-jar-plugin</artifactId>          <version>3.0.2</version>        </plugin>        <plugin>          <artifactId>maven-install-plugin</artifactId>          <version>2.5.2</version>        </plugin>        <plugin>          <artifactId>maven-deploy-plugin</artifactId>          <version>2.8.2</version>        </plugin>        <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->        <plugin>          <artifactId>maven-site-plugin</artifactId>          <version>3.7.1</version>        </plugin>        <plugin>          <artifactId>maven-project-info-reports-plugin</artifactId>          <version>3.0.0</version>        </plugin>      </plugins>    </pluginManagement>    <plugins>      <plugin>        <groupId>com.buschmais.jqassistant</groupId>        <artifactId>jqassistant-maven-plugin</artifactId>        <executions>          <execution>            <goals>              <goal>scan</goal>              <goal>analyze</goal>            </goals>            <configuration>              <warnOnSeverity>MINOR</warnOnSeverity>              <failOnSeverity>MAJOR</failOnSeverity>              <failOnViolations>true</failOnViolations>              <scanIncludes>                <scanInclude>                  <path>.git</path>                </scanInclude>              </scanIncludes>              <scanProperties>                <xml.file.include>*.xml</xml.file.include>              </scanProperties>            </configuration>          </execution>        </executions>        <dependencies>          <dependency>            <groupId>de.kontext-e.jqassistant.plugin</groupId>            <artifactId>jqassistant.plugin.git</artifactId>            <version>1.6.1</version>          </dependency>        </dependencies>      </plugin>    </plugins>  </build>
  <reporting>    <plugins>      <plugin>        <groupId>com.buschmais.jqassistant</groupId>        <artifactId>jqassistant-maven-plugin</artifactId>        <reportSets>          <reportSet>            <reports>              <report>report</report>            </reports>          </reportSet>        </reportSets>      </plugin>    </plugins>  </reporting></project>I will have a look at it today.
BTW: Is the project available (Bitbucket, Gitlab, Zip)...?
    
--
You received this message because you are subscribed to the Google Groups "jQAssistant" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jqassistant...@googlegroups.com.
To post to this group, send email to jqass...@googlegroups.com.
Visit this group at https://groups.google.com/group/jqassistant.
To view this discussion on the web visit https://groups.google.com/d/msgid/jqassistant/7e65119e-2ff5-4af1-9f48-4242dc8fe782%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
-- N Oliver B. Fischer A Schönhauser Allee 64, 10437 Berlin, Deutschland/Germany P +49 30 44793251 M +49 178 7903538 E o.b.f...@swe-blog.net S oliver.b.fischer J oliver.b...@jabber.org X http://xing.to/obf
--
You received this message because you are subscribed to the Google Groups "jQAssistant" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jqassistant...@googlegroups.com.
To post to this group, send email to jqass...@googlegroups.com.
Visit this group at https://groups.google.com/group/jqassistant.
To view this discussion on the web visit https://groups.google.com/d/msgid/jqassistant/7e65119e-2ff5-4af1-9f48-4242dc8fe782%40googlegroups.com.
Hi Mikel,
does this solve your problem?
Oliver
    
    
To view this discussion on the web visit https://groups.google.com/d/msgid/jqassistant/em53b3d9b2-e943-4b54-98ec-58a6642659de%40mythenmetz-jr.
For more options, visit https://groups.google.com/d/optout.
-- N Oliver B. Fischer A Schönhauser Allee 64, 10437 Berlin, Deutschland/Germany P +49 30 44793251 M +49 178 7903538
E o.b.f...@swe-blog.net S oliver.b.fischer J oliver.b...@jabber.org X http://xing.to/obf
<plugin>
<groupId>com.buschmais.jqassistant</groupId>
<artifactId>jqassistant-maven-plugin</artifactId>
<version>${jqassistant.version}</version>
<executions>
<execution>
<id>default-cli</id>
<goals>
<goal>scan</goal>
<goal>analyze</goal>
</goals>
<configuration>
...
To unsubscribe from this group and stop receiving emails from it, send an email to jqassistant...@googlegroups.com.To post to this group, send email to jqass...@googlegroups.com.
Visit this group at https://groups.google.com/group/jqassistant.
To view this discussion on the web visit https://groups.google.com/d/msgid/jqassistant/3e8dc740-5728-36d0-2238-247b3b270288%40ikasle.ehu.eus.