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.

pom.xml 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>org.sonarsource.sonarqube</groupId>
  6. <artifactId>server</artifactId>
  7. <version>5.4-SNAPSHOT</version>
  8. <relativePath>..</relativePath>
  9. </parent>
  10. <artifactId>sonar-views-bridge</artifactId>
  11. <name>SonarQube :: Views Bridge</name>
  12. <dependencies>
  13. <dependency>
  14. <groupId>${project.groupId}</groupId>
  15. <artifactId>sonar-plugin-api</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>${project.groupId}</groupId>
  19. <artifactId>sonar-core</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.google.code.findbugs</groupId>
  23. <artifactId>jsr305</artifactId>
  24. <scope>provided</scope>
  25. </dependency>
  26. </dependencies>
  27. <build>
  28. <plugins>
  29. <plugin>
  30. <groupId>org.apache.maven.plugins</groupId>
  31. <artifactId>maven-surefire-plugin</artifactId>
  32. <configuration>
  33. <skipTests>${skipServerTests}</skipTests>
  34. </configuration>
  35. </plugin>
  36. </plugins>
  37. </build>
  38. <profiles>
  39. <profile>
  40. <id>release</id>
  41. <build>
  42. <plugins>
  43. <plugin>
  44. <artifactId>maven-deploy-plugin</artifactId>
  45. <configuration>
  46. <skip>true</skip>
  47. </configuration>
  48. </plugin>
  49. </plugins>
  50. </build>
  51. </profile>
  52. </profiles>
  53. </project>