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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  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>sonarqube</artifactId>
  7. <version>7.1-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>sonar-scanner-engine</artifactId>
  10. <name>SonarQube :: Scanner Engine</name>
  11. <properties>
  12. <enableBenchmarkAssertions>false</enableBenchmarkAssertions>
  13. </properties>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.google.code.findbugs</groupId>
  17. <artifactId>jsr305</artifactId>
  18. <scope>provided</scope>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.sonarsource</groupId>
  22. <artifactId>sonar-persistit</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.google.guava</groupId>
  26. <artifactId>guava</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>${project.groupId}</groupId>
  30. <artifactId>sonar-core</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>${project.groupId}</groupId>
  34. <artifactId>sonar-scanner-protocol</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>${project.groupId}</groupId>
  38. <artifactId>sonar-ws</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>${project.groupId}</groupId>
  42. <artifactId>sonar-home</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>${project.groupId}</groupId>
  46. <artifactId>sonar-plugin-api</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.slf4j</groupId>
  50. <artifactId>slf4j-api</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.slf4j</groupId>
  54. <artifactId>jcl-over-slf4j</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.slf4j</groupId>
  58. <artifactId>log4j-over-slf4j</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.slf4j</groupId>
  62. <artifactId>jul-to-slf4j</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>commons-lang</groupId>
  66. <artifactId>commons-lang</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>commons-codec</groupId>
  70. <artifactId>commons-codec</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.google.code.gson</groupId>
  74. <artifactId>gson</artifactId>
  75. </dependency>
  76. <!-- For HTML Report -->
  77. <dependency>
  78. <groupId>org.freemarker</groupId>
  79. <artifactId>freemarker</artifactId>
  80. </dependency>
  81. <!-- unit tests -->
  82. <dependency>
  83. <groupId>junit</groupId>
  84. <artifactId>junit</artifactId>
  85. <scope>test</scope>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.tngtech.java</groupId>
  89. <artifactId>junit-dataprovider</artifactId>
  90. <scope>test</scope>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.assertj</groupId>
  94. <artifactId>assertj-core</artifactId>
  95. <scope>test</scope>
  96. </dependency>
  97. <dependency>
  98. <groupId>net.javacrumbs.json-unit</groupId>
  99. <artifactId>json-unit-assertj</artifactId>
  100. <version>0.0.15</version>
  101. <scope>test</scope>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.mockito</groupId>
  105. <artifactId>mockito-core</artifactId>
  106. <scope>test</scope>
  107. </dependency>
  108. <dependency>
  109. <groupId>${project.groupId}</groupId>
  110. <artifactId>sonar-plugin-api</artifactId>
  111. <type>test-jar</type>
  112. <scope>test</scope>
  113. <version>${project.version}</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.eclipse.jetty</groupId>
  117. <artifactId>jetty-server</artifactId>
  118. <scope>test</scope>
  119. </dependency>
  120. <dependency>
  121. <groupId>javax.servlet</groupId>
  122. <artifactId>javax.servlet-api</artifactId>
  123. <scope>test</scope>
  124. </dependency>
  125. <dependency>
  126. <groupId>${project.groupId}</groupId>
  127. <artifactId>sonar-xoo-plugin</artifactId>
  128. <scope>test</scope>
  129. </dependency>
  130. </dependencies>
  131. <build>
  132. <plugins>
  133. <plugin>
  134. <groupId>org.apache.maven.plugins</groupId>
  135. <artifactId>maven-jar-plugin</artifactId>
  136. <executions>
  137. <execution>
  138. <goals>
  139. <goal>test-jar</goal>
  140. </goals>
  141. </execution>
  142. </executions>
  143. </plugin>
  144. </plugins>
  145. </build>
  146. <profiles>
  147. <profile>
  148. <id>runBenchmarks</id>
  149. <activation>
  150. <property>
  151. <name>runBenchmarks</name>
  152. </property>
  153. </activation>
  154. <properties>
  155. <enableBenchmarkAssertions>true</enableBenchmarkAssertions>
  156. </properties>
  157. </profile>
  158. </profiles>
  159. </project>