-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
84 lines (82 loc) · 2.82 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
<?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" 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>org.github.nelsonstr</groupId>
<version>1.0.0-SNAPSHOT</version>
<artifactId>kevlar-code-rules</artifactId>
<packaging>jar</packaging>
<name>${project.artifactId}-${project.version}</name>
<description>This project provides code style and rules to be used in my projects.</description>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>jdepend</groupId>
<artifactId>jdepend</artifactId>
<version>2.9.1</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>3.2.1</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>3.2.1</version>
</dependency>
<dependency>
<groupId>org.apache.maven.enforcer</groupId>
<artifactId>enforcer-api</artifactId>
<version>1.3.1</version>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-container-default</artifactId>
<version>1.5.5</version>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
<plugins>
<!-- todo -->
<!--plugin>
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<version>1.9.0</version>
<executions>
<execution>
<id>check</id>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<inherited>true</inherited>
<configuration>
<excludes>
<exclude>src/main/resources/dtd/configuration_1_3.dtd</exclude>
<exclude>src/main/resources/dtd/suppressions_1_1.dtd</exclude>
<exclude>**/.externalToolBuilders/**</exclude>
<exclude>**/.fbprefs</exclude>
<exclude>**/.pmd</exclude>
<exclude>**/.scalastyle</exclude>
<exclude>**/.ruleset</exclude>
<exclude>**/COPYRIGHT.txt</exclude>
<exclude>**/LICENSE.txt</exclude>
<exclude>**/*.xcf</exclude>
<exclude>**/*.uml</exclude>
<exclude>**/*.umlusc</exclude>
<exclude>src/etc/javadoc.xml</exclude>
</excludes>
</configuration>
</plugin-->
</plugins>
</build>
</project>