sonarqube/server/sonar-process/pom.xml

120 lines
3.5 KiB
XML
Raw Normal View History

2014-09-12 10:19:06 +02:00
<?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">
2016-01-06 10:52:46 +01:00
<modelVersion>4.0.0</modelVersion>
2014-09-12 10:19:06 +02:00
<parent>
<groupId>org.sonarsource.sonarqube</groupId>
2014-09-12 10:19:06 +02:00
<artifactId>server</artifactId>
2016-05-20 17:28:19 +02:00
<version>6.0-SNAPSHOT</version>
2014-09-12 10:19:06 +02:00
<relativePath>../</relativePath>
</parent>
2014-09-12 10:19:06 +02:00
<artifactId>sonar-process</artifactId>
<name>SonarQube :: Process</name>
2016-04-11 11:45:35 +02:00
<properties>
<sonar.exclusions>target/generated-sources/**/*</sonar.exclusions>
</properties>
2014-09-12 10:19:06 +02:00
<dependencies>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<scope>provided</scope>
</dependency>
2016-03-31 12:20:55 +02:00
<dependency>
<!-- only if org.sonar.process.systeminfo HTTP server is being used -->
<groupId>org.nanohttpd</groupId>
<artifactId>nanohttpd</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<!-- only if org.sonar.process.systeminfo.protobuf classes are used -->
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<optional>true</optional>
</dependency>
2014-09-12 10:19:06 +02:00
<dependency>
<groupId>${project.groupId}</groupId>
2014-09-25 23:29:55 +02:00
<artifactId>sonar-testing-harness</artifactId>
2014-09-12 10:19:06 +02:00
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<scope>test</scope>
</dependency>
2016-03-31 12:20:55 +02:00
<dependency>
<groupId>com.squareup.okhttp</groupId>
<artifactId>okhttp</artifactId>
<scope>test</scope>
</dependency>
2014-09-12 10:19:06 +02:00
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>test-jar-with-dependencies.xml</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skipTests>${skipServerTests}</skipTests>
</configuration>
</plugin>
2014-09-12 10:19:06 +02:00
</plugins>
</build>
</project>