diff options
author | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2015-11-18 11:28:19 +0100 |
---|---|---|
committer | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2015-11-18 14:37:33 +0100 |
commit | 5934fd7d5566968f395b6dcf4658bad241d28825 (patch) | |
tree | 9eebdcae663474869ed89431a891238fedae71b8 /server/sonar-dev-cockpit-bridge/pom.xml | |
parent | bc44590d916b80b0247ab4df33d92d7d1c9e4074 (diff) | |
download | sonarqube-5934fd7d5566968f395b6dcf4658bad241d28825.tar.gz sonarqube-5934fd7d5566968f395b6dcf4658bad241d28825.zip |
SONAR-7027 add DevCockpitBridge and start/stop Dev Cockpit plugin
add Maven module sonar-dev-cockpit-bridge
Diffstat (limited to 'server/sonar-dev-cockpit-bridge/pom.xml')
-rw-r--r-- | server/sonar-dev-cockpit-bridge/pom.xml | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/server/sonar-dev-cockpit-bridge/pom.xml b/server/sonar-dev-cockpit-bridge/pom.xml new file mode 100644 index 00000000000..e63a98facb5 --- /dev/null +++ b/server/sonar-dev-cockpit-bridge/pom.xml @@ -0,0 +1,58 @@ +<?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.sonarqube</groupId> + <artifactId>server</artifactId> + <version>5.3-SNAPSHOT</version> + <relativePath>..</relativePath> + </parent> + <artifactId>sonar-dev-cockpit-bridge</artifactId> + <name>SonarQube :: Developer Cockpit Bridge</name> + + <dependencies> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>sonar-plugin-api</artifactId> + </dependency> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>sonar-core</artifactId> + </dependency> + <dependency> + <groupId>com.google.code.findbugs</groupId> + <artifactId>jsr305</artifactId> + <scope>provided</scope> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <skipTests>${skipServerTests}</skipTests> + </configuration> + </plugin> + </plugins> + </build> + + <profiles> + <profile> + <id>release</id> + <build> + <plugins> + <plugin> + <artifactId>maven-deploy-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + </plugins> + </build> + </profile> + </profiles> + + +</project> |