mirror of https://github.com/apache/maven.git
git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@506478 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d2edc3b213
commit
fe102ea9e8
|
@ -0,0 +1,31 @@
|
|||
<?xml version="1.0"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>test</groupId>
|
||||
<artifactId>test-project</artifactId>
|
||||
<version>1.0.0-SNAPSHOT</version>
|
||||
<name>My test project</name>
|
||||
<build>
|
||||
<extensions>
|
||||
<extension>
|
||||
<groupId>test</groupId>
|
||||
<artifactId>checkstyle-configs</artifactId>
|
||||
<version>1.0.4-SNAPSHOT</version>
|
||||
</extension>
|
||||
</extensions>
|
||||
</build>
|
||||
<reporting>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-checkstyle-plugin</artifactId>
|
||||
<version>2.1</version>
|
||||
<configuration>
|
||||
<configLocation>MyConventions.xml</configLocation>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</reporting>
|
||||
</project>
|
|
@ -0,0 +1,11 @@
|
|||
package test;
|
||||
|
||||
public class MyClass
|
||||
{
|
||||
|
||||
public static void main( String[] args )
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue