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

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