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.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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.parent</groupId>
  7. <artifactId>parent</artifactId>
  8. <version>23</version>
  9. <relativePath />
  10. </parent>
  11. <groupId>com.sonarsource.it</groupId>
  12. <artifactId>it-sonar-scanner</artifactId>
  13. <version>1.0-SNAPSHOT</version>
  14. <name>SonarSource :: IT :: SonarQube Scanner</name>
  15. <inceptionYear>2009</inceptionYear>
  16. <organization>
  17. <name>SonarSource</name>
  18. <url>http://www.sonarsource.com</url>
  19. </organization>
  20. <properties>
  21. <sonar.buildVersion>5.0</sonar.buildVersion>
  22. <surefire.argLine>-server</surefire.argLine>
  23. <!-- following properties must be set in command-line : sonar.runtimeVersion and sonarRunner.version -->
  24. </properties>
  25. <dependencies>
  26. <dependency>
  27. <groupId>org.sonarsource.orchestrator</groupId>
  28. <artifactId>sonar-orchestrator</artifactId>
  29. <version>3.8-SNAPSHOT</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>junit</groupId>
  33. <artifactId>junit</artifactId>
  34. <version>4.11</version>
  35. <scope>test</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.codehaus.sonar</groupId>
  39. <artifactId>sonar-ws-client</artifactId>
  40. <version>${sonar.buildVersion}</version>
  41. <scope>test</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.easytesting</groupId>
  45. <artifactId>fest-assert</artifactId>
  46. <version>1.4</version>
  47. <scope>test</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.assertj</groupId>
  51. <artifactId>assertj-core</artifactId>
  52. <version>2.1.0</version>
  53. </dependency>
  54. </dependencies>
  55. <build>
  56. <pluginManagement>
  57. <plugins>
  58. <plugin>
  59. <groupId>org.apache.maven.plugins</groupId>
  60. <artifactId>maven-surefire-plugin</artifactId>
  61. <configuration>
  62. <includes>
  63. <include>**/SonarRunnerTestSuite.java</include>
  64. </includes>
  65. </configuration>
  66. </plugin>
  67. </plugins>
  68. </pluginManagement>
  69. </build>
  70. </project>