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

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