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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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>11</version>
  7. <relativePath>../parent</relativePath>
  8. </parent>
  9. <artifactId>sonar-runner</artifactId>
  10. <version>1.3-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. </developers>
  37. <scm>
  38. <connection>scm:svn:http://svn.codehaus.org/sonar-plugins/trunk/sonar-runner</connection>
  39. <developerConnection>scm:svn:https://svn.codehaus.org/sonar-plugins/trunk/sonar-runner</developerConnection>
  40. <url>http://svn.sonar-plugins.codehaus.org</url>
  41. </scm>
  42. <issueManagement>
  43. <system>JIRA</system>
  44. <url>http://jira.codehaus.org/browse/SONARPLUGINS/component/14640</url>
  45. </issueManagement>
  46. <ciManagement>
  47. </ciManagement>
  48. <properties>
  49. <sonar.buildVersion>2.6</sonar.buildVersion>
  50. </properties>
  51. <dependencies>
  52. <!-- Would be embedded in final JAR -->
  53. <dependency>
  54. <groupId>org.codehaus.sonar</groupId>
  55. <artifactId>sonar-batch-bootstrapper</artifactId>
  56. <version>${sonar.buildVersion}</version>
  57. </dependency>
  58. <!-- Would be available after bootstrapping -->
  59. <dependency>
  60. <groupId>ch.qos.logback</groupId>
  61. <artifactId>logback-classic</artifactId>
  62. <version>0.9.15</version>
  63. <scope>provided</scope>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.codehaus.sonar</groupId>
  67. <artifactId>sonar-batch</artifactId>
  68. <version>${sonar.buildVersion}</version>
  69. <scope>provided</scope>
  70. </dependency>
  71. <!-- Unit tests -->
  72. <dependency>
  73. <groupId>org.codehaus.sonar</groupId>
  74. <artifactId>sonar-testing-harness</artifactId>
  75. <version>${sonar.buildVersion}</version>
  76. <scope>test</scope>
  77. </dependency>
  78. </dependencies>
  79. <build>
  80. <resources>
  81. <resource>
  82. <directory>src/main/resources</directory>
  83. <filtering>true</filtering>
  84. </resource>
  85. </resources>
  86. <plugins>
  87. <plugin>
  88. <groupId>org.apache.maven.plugins</groupId>
  89. <artifactId>maven-assembly-plugin</artifactId>
  90. <version>2.2</version>
  91. <executions>
  92. <execution>
  93. <phase>package</phase>
  94. <goals>
  95. <goal>single</goal>
  96. </goals>
  97. <configuration>
  98. <appendAssemblyId>false</appendAssemblyId>
  99. <descriptors>
  100. <descriptor>${basedir}/assembly.xml</descriptor>
  101. </descriptors>
  102. <!-- TODO archiverConfig should be declared in parent POM - http://jira.codehaus.org/browse/SONARPLUGINS-1374 -->
  103. <archiverConfig>
  104. <!-- Workaround for http://jira.codehaus.org/browse/MASSEMBLY-422 -->
  105. <!-- 420(dec) = 644(oct) -->
  106. <fileMode>420</fileMode>
  107. <!-- 493(dec) = 755(oct) -->
  108. <directoryMode>493</directoryMode>
  109. <defaultDirectoryMode>493</defaultDirectoryMode>
  110. </archiverConfig>
  111. </configuration>
  112. </execution>
  113. </executions>
  114. </plugin>
  115. </plugins>
  116. </build>
  117. </project>