You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
150 lines
5.4 KiB
150 lines
5.4 KiB
<?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>68.0.0.247</version>
|
|
</parent>
|
|
|
|
<groupId>com.keyware.sonar</groupId>
|
|
<artifactId>sonar-keyware</artifactId>
|
|
<version>1.0</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>Keyware Private Terms</name>
|
|
<distribution>user must manually download and install the dependency.</distribution>
|
|
</license>
|
|
</licenses>
|
|
|
|
<organization>
|
|
<name>北京关键科技股份有限公司</name>
|
|
<url>http://www.keyware.cn</url>
|
|
</organization>
|
|
|
|
<url>http://www.keyware.cn</url>
|
|
|
|
<scm>
|
|
<connection>scm:git:http://www.keyware.cn</connection>
|
|
<developerConnection>scm:git:http://www.keyware.cn</developerConnection>
|
|
<url>http://www.keyware.cn</url>
|
|
<tag>-</tag>
|
|
</scm>
|
|
|
|
<developers>
|
|
<developer>
|
|
<id>guoxin</id>
|
|
<name>GuoXin</name>
|
|
<organization>Keyware</organization>
|
|
</developer>
|
|
<developer>
|
|
<id>renfengjiang</id>
|
|
<name>RenFengJiang</name>
|
|
<organization>Keyware</organization>
|
|
</developer>
|
|
<developer>
|
|
<id>renfengshan</id>
|
|
<name>RenFengShan</name>
|
|
<organization>Keyware</organization>
|
|
</developer>
|
|
<developer>
|
|
<id>wuhaoyang</id>
|
|
<name>WuHaoYang</name>
|
|
<organization>Keyware</organization>
|
|
</developer>
|
|
<developer>
|
|
<id>zhangchenbao</id>
|
|
<name>ZhangChenBao</name>
|
|
<organization>Keyware</organization>
|
|
</developer>
|
|
</developers>
|
|
|
|
<properties>
|
|
<java.version>11</java.version>
|
|
<jdk.min.version>11</jdk.min.version>
|
|
<maven.compiler.source>11</maven.compiler.source>
|
|
<maven.compiler.target>11</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<log4j.version>2.17.2</log4j.version>
|
|
<sonar.java.version>7.24.0.32100</sonar.java.version>
|
|
<version.jacoco.plugin>0.8.10</version.jacoco.plugin>
|
|
<junit.jupiter.version>5.9.1</junit.jupiter.version>
|
|
<aggregate.report.dir>integration-tests/target/site/jacoco-aggregate/jacoco.xml</aggregate.report.dir>
|
|
</properties>
|
|
|
|
<modules>
|
|
<module>sonar-keyware-plugins-cxx</module>
|
|
<module>sonar-keyware-plugins-java</module>
|
|
<module>soanr-keyware-example</module>
|
|
</modules>
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.sonarsource.sonarqube-plugins.cxx</groupId>
|
|
<artifactId>cxx</artifactId>
|
|
<version>2.1.2-SNAPSHOT</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.sonarsource.java</groupId>
|
|
<artifactId>java</artifactId>
|
|
<version>7.24.0.32100</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
<artifactId>log4j-slf4j-impl</artifactId>
|
|
<version>${log4j.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
<artifactId>log4j-core</artifactId>
|
|
<version>${log4j.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter</artifactId>
|
|
<version>${junit.jupiter.version}</version>
|
|
<scope>test</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
<version>${junit.jupiter.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
<version>${junit.jupiter.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-migrationsupport</artifactId>
|
|
<version>${junit.jupiter.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
</project> |