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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. <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/maven-v4_0_0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <parent>
  4. <groupId>org.codehaus.sonar-plugins</groupId>
  5. <artifactId>parent</artifactId>
  6. <version>13</version>
  7. </parent>
  8. <artifactId>sonar-runner</artifactId>
  9. <version>1.5-SNAPSHOT</version>
  10. <name>Sonar Standalone Runner</name>
  11. <url>http://docs.codehaus.org/display/SONAR/Sonar+Standalone+Runner</url>
  12. <inceptionYear>2011</inceptionYear>
  13. <organization>
  14. <name>SonarSource</name>
  15. <url>http://www.sonarsource.com</url>
  16. </organization>
  17. <licenses>
  18. <license>
  19. <name>GNU LGPL 3</name>
  20. <url>http://www.gnu.org/licenses/lgpl.txt</url>
  21. <distribution>repo</distribution>
  22. </license>
  23. </licenses>
  24. <developers>
  25. <developer>
  26. <id>godin</id>
  27. <name>Evgeny Mandrikov</name>
  28. <timezone>+3</timezone>
  29. </developer>
  30. <developer>
  31. <id>simon.brandhof</id>
  32. <name>Simon Brandhof</name>
  33. <timezone>+1</timezone>
  34. </developer>
  35. <developer>
  36. <id>bellingard</id>
  37. <name>Fabrice Bellingard</name>
  38. <timezone>+1</timezone>
  39. </developer>
  40. </developers>
  41. <scm>
  42. <connection>scm:git:git@github.com:SonarCommunity/sonar-runner.git</connection>
  43. <developerConnection>scm:git:git@github.com:SonarCommunity/sonar-runner.git</developerConnection>
  44. <url>https://github.com/SonarCommunity/sonar-runner</url>
  45. </scm>
  46. <issueManagement>
  47. <system>JIRA</system>
  48. <url>http://jira.codehaus.org/browse/SONARPLUGINS/component/14640</url>
  49. </issueManagement>
  50. <ciManagement>
  51. </ciManagement>
  52. <properties>
  53. <sonar.buildVersion>2.11</sonar.buildVersion>
  54. </properties>
  55. <dependencies>
  56. <!-- Would be available after bootstrapping -->
  57. <dependency>
  58. <groupId>ch.qos.logback</groupId>
  59. <artifactId>logback-classic</artifactId>
  60. <version>0.9.15</version>
  61. <scope>provided</scope>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.codehaus.sonar</groupId>
  65. <artifactId>sonar-batch</artifactId>
  66. <version>${sonar.buildVersion}</version>
  67. <scope>provided</scope>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.codehaus.sonar</groupId>
  71. <artifactId>sonar-plugin-api</artifactId>
  72. <version>${sonar.buildVersion}</version>
  73. <scope>provided</scope>
  74. </dependency>
  75. <!-- Unit tests -->
  76. <dependency>
  77. <groupId>org.codehaus.sonar</groupId>
  78. <artifactId>sonar-testing-harness</artifactId>
  79. <version>${sonar.buildVersion}</version>
  80. <scope>test</scope>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.easytesting</groupId>
  84. <artifactId>fest-assert</artifactId>
  85. <version>1.4</version>
  86. <scope>test</scope>
  87. </dependency>
  88. </dependencies>
  89. <build>
  90. <resources>
  91. <resource>
  92. <directory>src/main/resources</directory>
  93. <filtering>true</filtering>
  94. </resource>
  95. </resources>
  96. <plugins>
  97. <plugin>
  98. <groupId>org.apache.maven.plugins</groupId>
  99. <artifactId>maven-assembly-plugin</artifactId>
  100. <version>2.2</version>
  101. <executions>
  102. <execution>
  103. <phase>package</phase>
  104. <goals>
  105. <goal>single</goal>
  106. </goals>
  107. <configuration>
  108. <appendAssemblyId>false</appendAssemblyId>
  109. <descriptors>
  110. <descriptor>${basedir}/assembly.xml</descriptor>
  111. </descriptors>
  112. <!-- TODO archiverConfig should be declared in parent POM - http://jira.codehaus.org/browse/SONARPLUGINS-1374 -->
  113. <archiverConfig>
  114. <!-- Workaround for http://jira.codehaus.org/browse/MASSEMBLY-422 -->
  115. <!-- 420(dec) = 644(oct) -->
  116. <fileMode>420</fileMode>
  117. <!-- 493(dec) = 755(oct) -->
  118. <directoryMode>493</directoryMode>
  119. <defaultDirectoryMode>493</defaultDirectoryMode>
  120. </archiverConfig>
  121. </configuration>
  122. </execution>
  123. </executions>
  124. </plugin>
  125. </plugins>
  126. </build>
  127. </project>