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 2.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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>6.0.1-SNAPSHOT</version>
  8. <relativePath>../</relativePath>
  9. </parent>
  10. <artifactId>sonar-search</artifactId>
  11. <packaging>jar</packaging>
  12. <name>SonarQube :: Search</name>
  13. <description>Wrapper to start Elasticsearch</description>
  14. <dependencies>
  15. <dependency>
  16. <groupId>${project.groupId}</groupId>
  17. <artifactId>sonar-process</artifactId>
  18. <version>${project.version}</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.elasticsearch</groupId>
  22. <artifactId>elasticsearch</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>net.java.dev.jna</groupId>
  26. <artifactId>jna</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.google.code.findbugs</groupId>
  30. <artifactId>jsr305</artifactId>
  31. <scope>provided</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.slf4j</groupId>
  35. <artifactId>slf4j-api</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>ch.qos.logback</groupId>
  39. <artifactId>logback-classic</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>ch.qos.logback</groupId>
  43. <artifactId>logback-core</artifactId>
  44. </dependency>
  45. <!-- testing -->
  46. <dependency>
  47. <groupId>com.google.guava</groupId>
  48. <artifactId>guava</artifactId>
  49. <scope>test</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>${project.groupId}</groupId>
  53. <artifactId>sonar-testing-harness</artifactId>
  54. <scope>test</scope>
  55. </dependency>
  56. </dependencies>
  57. <build>
  58. <plugins>
  59. <plugin>
  60. <groupId>org.apache.maven.plugins</groupId>
  61. <artifactId>maven-surefire-plugin</artifactId>
  62. <configuration>
  63. <skipTests>${skipServerTests}</skipTests>
  64. </configuration>
  65. </plugin>
  66. </plugins>
  67. </build>
  68. </project>