-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
43 lines (39 loc) · 1.5 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
<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.ligoj.api</groupId>
<artifactId>plugin-parent</artifactId>
<version>4.1.11</version>
<relativePath/>
</parent>
<groupId>org.ligoj.plugin</groupId>
<artifactId>plugin-qa-sonarqube</artifactId>
<version>1.1.6-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Ligoj - Plugin QA - SonarQube</name>
<scm>
<connection>scm:git:https://github.com/ligoj/plugin-qa-sonarqube</connection>
<developerConnection>scm:git:https://github.com/ligoj/plugin-qa-sonarqube</developerConnection>
<url>https://github.com/ligoj/plugin-qa-sonarqube.git</url>
</scm>
<dependencies>
<dependency>
<groupId>org.ligoj.plugin</groupId>
<artifactId>plugin-qa</artifactId>
<version>[1.1.2,1.2.0)</version>
<scope>provided</scope>
</dependency>
</dependencies>
<profiles>
<profile>
<id>github</id>
<distributionManagement>
<repository>
<id>github-ligoj</id>
<url>https://maven.pkg.github.com/ligoj/plugin-qa-sonarqube</url>
</repository>
</distributionManagement>
</profile>
</profiles>
</project>