forked from SonarSource/sonar-scanner-msbuild
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
80 lines (73 loc) · 2.51 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
<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.sonarsource.parent</groupId>
<artifactId>parent</artifactId>
<version>36</version>
</parent>
<groupId>org.sonarsource.scanner.msbuild</groupId>
<artifactId>sonar-scanner-msbuild</artifactId>
<version>1.0</version>
<packaging>pom</packaging>
<name>SonarQube.Scanner.MSBuild</name>
<url>http://redirect.sonarsource.com/doc/msbuild-sq-runner.html</url>
<inceptionYear>2016</inceptionYear>
<organization>
<name>SonarSource</name>
<url>http://www.sonarsource.com</url>
</organization>
<licenses>
<license>
<name>GNU LGPL 3</name>
<url>http://www.gnu.org/licenses/lgpl.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:SonarSource-VisualStudio/sonar-scanner-msbuild.git</connection>
<developerConnection>scm:git:git@github.com:SonarSource-VisualStudio/sonar-scanner-msbuild.git</developerConnection>
<url>https://github.com/SonarSource-VisualStudio/sonar-scanner-msbuild</url>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>JIRA</system>
<url>https://jira.sonarsource.com/browse/SONARMSBRU</url>
</issueManagement>
<properties>
<maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
<gitRepositoryName>sonar-scanner-msbuild</gitRepositoryName>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.12</version>
<executions>
<execution>
<id>attach-artifacts</id>
<phase>package</phase>
<goals>
<goal>attach-artifact</goal>
</goals>
<configuration>
<artifacts>
<artifact>
<file>scannerZipPath</file>
<type>zip</type>
<classifier></classifier>
</artifact>
<artifact>
<file>implZipPath</file>
<type>zip</type>
<classifier>impl</classifier>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>