forked from lg2de/sonar-scm-tfvc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
90 lines (84 loc) · 2.85 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
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sonarsource.parent</groupId>
<artifactId>parent</artifactId>
<version>31</version>
</parent>
<groupId>org.sonarsource.tfvc</groupId>
<artifactId>sonar-scm-tfvc</artifactId>
<version>2.2-SNAPSHOT</version>
<packaging>pom</packaging>
<name>SonarQube :: SCM :: TFVC</name>
<inceptionYear>2014</inceptionYear>
<licenses>
<license>
<name>MIT</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:SonarQubeCommunity/sonar-scm-tfvc.git</connection>
<developerConnection>scm:git:git@github.com:SonarQubeCommunity/sonar-scm-tfvc.git</developerConnection>
<url>https://github.com/SonarQubeCommunity/sonar-scm-tfvc</url>
<tag>HEAD</tag>
</scm>
<developers>
<developer>
<id>dbolkensteyn</id>
<name>Dinesh Bolkensteyn</name>
<timezone>+1</timezone>
</developer>
<developer>
<id>henryju</id>
<name>Julien Henry</name>
<timezone>+1</timezone>
</developer>
</developers>
<modules>
<module>SonarTfsAnnotate</module>
<module>sonar-scm-tfvc-plugin</module>
</modules>
<build>
<plugins>
<!-- check copyright/license headers -->
<plugin>
<inherited>false</inherited>
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<configuration>
<header>${project.basedir}/copyright.txt</header>
<failIfMissing>true</failIfMissing>
<strictCheck>true</strictCheck>
<aggregate>true</aggregate>
<includes>
<include>**/sonar-*/src/main/java/**</include>
<include>**/sonar-*/src/test/java/**</include>
<include>**/SonarT*/**/*.cs</include>
</includes>
<excludes>
<exclude>tests/**</exclude>
<exclude>**/obj/**</exclude>
<exclude>**/bin/**</exclude>
</excludes>
<mapping>
<java>SLASHSTAR_STYLE</java>
<cs>SLASHSTAR_STYLE</cs>
</mapping>
<skip>${skipSanityChecks}</skip>
</configuration>
<executions>
<execution>
<id>enforce-license-headers</id>
<phase>validate</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>