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.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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-process</artifactId>
  11. <name>SonarQube :: Process</name>
  12. <properties>
  13. <sonar.exclusions>target/generated-sources/**/*</sonar.exclusions>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>ch.qos.logback</groupId>
  18. <artifactId>logback-classic</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>commons-codec</groupId>
  22. <artifactId>commons-codec</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>commons-io</groupId>
  26. <artifactId>commons-io</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>commons-lang</groupId>
  30. <artifactId>commons-lang</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.google.code.findbugs</groupId>
  34. <artifactId>jsr305</artifactId>
  35. <scope>provided</scope>
  36. </dependency>
  37. <dependency>
  38. <!-- only if org.sonar.process.systeminfo HTTP server is being used -->
  39. <groupId>org.nanohttpd</groupId>
  40. <artifactId>nanohttpd</artifactId>
  41. <optional>true</optional>
  42. </dependency>
  43. <dependency>
  44. <!-- only if org.sonar.process.systeminfo.protobuf classes are used -->
  45. <groupId>com.google.protobuf</groupId>
  46. <artifactId>protobuf-java</artifactId>
  47. <optional>true</optional>
  48. </dependency>
  49. <dependency>
  50. <groupId>${project.groupId}</groupId>
  51. <artifactId>sonar-testing-harness</artifactId>
  52. <scope>test</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.mockito</groupId>
  56. <artifactId>mockito-core</artifactId>
  57. <scope>test</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.google.guava</groupId>
  61. <artifactId>guava</artifactId>
  62. <scope>test</scope>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.eclipse.jetty</groupId>
  66. <artifactId>jetty-server</artifactId>
  67. <scope>test</scope>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.squareup.okhttp3</groupId>
  71. <artifactId>okhttp</artifactId>
  72. <scope>test</scope>
  73. </dependency>
  74. </dependencies>
  75. <build>
  76. <plugins>
  77. <plugin>
  78. <groupId>org.apache.maven.plugins</groupId>
  79. <artifactId>maven-jar-plugin</artifactId>
  80. <executions>
  81. <execution>
  82. <goals>
  83. <goal>test-jar</goal>
  84. </goals>
  85. </execution>
  86. </executions>
  87. </plugin>
  88. <plugin>
  89. <groupId>org.apache.maven.plugins</groupId>
  90. <artifactId>maven-assembly-plugin</artifactId>
  91. <configuration>
  92. <descriptors>
  93. <descriptor>test-jar-with-dependencies.xml</descriptor>
  94. </descriptors>
  95. </configuration>
  96. <executions>
  97. <execution>
  98. <phase>package</phase>
  99. <goals>
  100. <goal>single</goal>
  101. </goals>
  102. </execution>
  103. </executions>
  104. </plugin>
  105. <plugin>
  106. <groupId>org.apache.maven.plugins</groupId>
  107. <artifactId>maven-surefire-plugin</artifactId>
  108. <configuration>
  109. <skipTests>${skipServerTests}</skipTests>
  110. </configuration>
  111. </plugin>
  112. </plugins>
  113. </build>
  114. </project>