-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
93 lines (84 loc) · 3.67 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<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>
<parent>
<groupId>org.turbogwt</groupId>
<artifactId>turbogwt</artifactId>
<version>0.3.0</version>
</parent>
<groupId>org.turbogwt.tools</groupId>
<artifactId>turbogwt-checkstyle</artifactId>
<version>0.4.0-SNAPSHOT</version>
<name>Turbo GWT Checkstyle</name>
<inceptionYear>2014</inceptionYear>
<description>Checkstyle specifications for Turbo GWT project.</description>
<url>http://turbogwt.org</url>
<scm>
<connection>scm:git:ssh://github.com/growbit/${project.artifactId}.git</connection>
<developerConnection>scm:git:ssh://[email protected]/growbit/${project.artifactId}.git</developerConnection>
<url>https://github.com/growbit/${project.artifactId}</url>
</scm>
<issueManagement>
<url>https://github.com/growbit/${project.artifactId}/issues</url>
<system>Github Issues</system>
</issueManagement>
<properties>
<checkstyle.version>5.6</checkstyle.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${target.jdk}</source>
<target>${target.jdk}</target>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven-javadoc-plugin.version}</version>
<configuration>
<maxmemory>2048</maxmemory>
<failOnError>true</failOnError>
<doctitle>Turbo GWT Checkstyle Javadocs</doctitle>
<links>
<link>http://download.oracle.com/javase/7/docs/api/</link>
</links>
<outputDirectory>${project.build.directory}/javadoc</outputDirectory>
<reportOutputDirectory>${project.reporting.outputDirectory}/javadoc</reportOutputDirectory>
<excludes>
<exclude>**/*.txt</exclude>
</excludes>
<header>
<![CDATA[
<a href="https://github.com/growbit/turbogwt-checkstyle" target="_blank">Back to Home</a>
]]>
</header>
<doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
<docletArtifact>
<groupId>org.umlgraph</groupId>
<artifactId>umlgraph</artifactId>
<version>5.6.6</version>
</docletArtifact>
<additionalparam>
-horizontal
</additionalparam>
</configuration>
</plugin>
<plugin>
<groupId>com.github.github</groupId>
<artifactId>site-maven-plugin</artifactId>
<version>${github.version}</version>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>${checkstyle.version}</version>
</dependency>
</dependencies>
</project>