forked from fundacionjala/enforce-sonarqube-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
86 lines (78 loc) · 2.77 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) Fundacion Jala. All rights reserved.
~ Licensed under the MIT license. See LICENSE file in the project root for full license information.
-->
<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>
<groupId>org.fundacionjala.enforce.sonarqube</groupId>
<artifactId>apex</artifactId>
<version>1.0b${build.number}</version>
<packaging>pom</packaging>
<name>Enforce Sonarqube Plugin</name>
<inceptionYear>2016</inceptionYear>
<description>Apex static code analyzer.</description>
<organization>
<name>Fundacion Jala</name>
<url>http://www.fundacion-jala.org/</url>
</organization>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>danjoel</id>
<name>Dan Canqui</name>
<email>[email protected]</email>
</developer>
<developer>
<id>rockfer</id>
<name>Fernando Hurtado</name>
<email>[email protected]</email>
</developer>
</developers>
<modules>
<module>sonar-apex-plugin</module>
<module>apex-squid</module>
<module>apex-checks</module>
<module>apex-toolkit</module>
</modules>
<properties>
<build.number>SNAPSHOT</build.number>
<license.title>SonarQube Apex Plugin</license.title>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<sonar.language>java</sonar.language>
</properties>
<dependencies>
<dependency>
<groupId>org.codehaus.sonar.sslr-squid-bridge</groupId>
<artifactId>sslr-squid-bridge</artifactId>
<version>2.6</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.10.19</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.13</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>