刚刚修改过,并用Spring Petclinic样本进行了尝试(
http://github.com/buschmais/spring-petclinic
)-它正在工作:
<!-- jQAssistant -->
<plugin>
<groupId>com.buschmais.jqassistant.scm</groupId>
<artifactId>jqassistant-maven-plugin</artifactId>
<version>${jqassistant.version}</version>
<executions>
<execution>
<goals>
<goal>scan</goal>
<goal>analyze</goal>
</goals>
<configuration>
<failOnViolations>false</failOnViolations>
<!--
<groups>
<group>default</group>
</groups>
-->
<scanIncludes>
<scanInclude>
<path>.git</path>
</scanInclude>
</scanIncludes>
<reportProperties>
<graphml.report.directory>${project.build.directory}/graphml</graphml.report.directory>
</reportProperties>
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>com.buschmais.jqassistant.plugin</groupId>
<artifactId>jqassistant.plugin.jpa2</artifactId>
<version>${jqassistant.version}</version>
</dependency>
<dependency>
<groupId>com.buschmais.jqassistant.plugin</groupId>
<artifactId>jqassistant.plugin.graphml</artifactId>
<version>${jqassistant.version}</version>
</dependency>
<dependency>
<groupId>de.kontext-e.jqassistant.plugin</groupId>
<artifactId>jqassistant.plugin.git</artifactId>
<version>1.1.1</version>
</dependency>
</dependencies>
</plugin>