forked from dependency-check/dependency-check-sonar-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
executable file
·104 lines (93 loc) · 3.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<?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>40</version>
</parent>
<groupId>org.sonarsource.owasp</groupId>
<artifactId>sonar-dependency-check</artifactId>
<version>1.2.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Dependency-Check for SonarQube</name>
<description>Integrates Dependency-Check reports into SonarQube</description>
<inceptionYear>2015</inceptionYear>
<properties>
<license.owner>Steve Springett</license.owner>
<license.mailto>steve.springett@owasp.org</license.mailto>
</properties>
<organization>
<name>OWASP</name>
<url>http://www.owasp.org</url>
</organization>
<licenses>
<license>
<name>GNU LGPL 3</name>
<url>http://www.gnu.org/licenses/lgpl.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Steve Springett</name>
<email>steve.springett@owasp.org</email>
<url>http://www.stevespringett.com</url>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/stevespringett/dependency-check-sonar-plugin</connection>
<developerConnection>scm:git:https://github.com/stevespringett/dependency-check-sonar-plugin</developerConnection>
<url>https://github.com/stevespringett/dependency-check-sonar-plugin</url>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/stevespringett/dependency-check-sonar-plugin/issues</url>
</issueManagement>
<ciManagement>
<system>Travis CI</system>
<url>https://travis-ci.org/stevespringett/dependency-check-sonar-plugin</url>
</ciManagement>
<!-- todo: remove this when SonarSource Forge hosting becomes a reality -->
<distributionManagement>
<repository>
<id>bintray</id>
<url>https://api.bintray.com/maven/stevespringett/owasp/dependency-check-sonar</url>
</repository>
</distributionManagement>
<modules>
<module>sonar-dependency-check-plugin</module>
</modules>
<!-- todo: remove this when SonarSource Forge hosting becomes a reality -->
<build>
<plugins>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>${version.release.plugin}</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
</configuration>
</plugin>
<plugin>
<groupId>de.jutzig</groupId>
<artifactId>github-release-plugin</artifactId>
<version>1.2.0</version>
<configuration>
<releaseName>sonar-dependency-check-${project.version}</releaseName>
<tag>${project.version}</tag>
<fileSets>
<fileSet>
<directory>sonar-dependency-check-plugin/target</directory>
<includes>
<include>sonar-dependency-check-plugin-${project.version}.jar</include>
</includes>
</fileSet>
</fileSets>
</configuration>
</plugin>
</plugins>
</build>
</project>