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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>org.codehaus.sonar-plugins</groupId>
  6. <artifactId>parent</artifactId>
  7. <version>8</version>
  8. <relativePath>../parent</relativePath>
  9. </parent>
  10. <artifactId>sonar-runner</artifactId>
  11. <version>0.1-SNAPSHOT</version>
  12. <name>Sonar Standalone Runner</name>
  13. <url>http://docs.codehaus.org/display/SONAR/Sonar+Standalone+Runner</url>
  14. <inceptionYear>2011</inceptionYear>
  15. <organization>
  16. <name>SonarSource</name>
  17. <url>http://www.sonarsource.com</url>
  18. </organization>
  19. <licenses>
  20. <license>
  21. <name>GNU LGPL 3</name>
  22. <url>http://www.gnu.org/licenses/lgpl.txt</url>
  23. <distribution>repo</distribution>
  24. </license>
  25. </licenses>
  26. <developers>
  27. <developer>
  28. <id>godin</id>
  29. <name>Evgeny Mandrikov</name>
  30. <timezone>+3</timezone>
  31. </developer>
  32. <developer>
  33. <id>simon.brandhof</id>
  34. <name>Simon Brandhof</name>
  35. <timezone>+1</timezone>
  36. </developer>
  37. </developers>
  38. <scm>
  39. <connection>scm:svn:http://svn.codehaus.org/sonar-plugins/trunk/sonar-runner</connection>
  40. <developerConnection>scm:svn:https://svn.codehaus.org/sonar-plugins/trunk/sonar-runner</developerConnection>
  41. <url>http://svn.sonar-plugins.codehaus.org</url>
  42. </scm>
  43. <issueManagement>
  44. </issueManagement>
  45. <ciManagement>
  46. </ciManagement>
  47. <properties>
  48. <sonar.buildVersion>2.6-SNAPSHOT</sonar.buildVersion>
  49. </properties>
  50. <dependencies>
  51. <!-- Would be embedded in final JAR -->
  52. <dependency>
  53. <groupId>org.codehaus.sonar</groupId>
  54. <artifactId>sonar-batch-bootstrapper</artifactId>
  55. <version>${sonar.buildVersion}</version>
  56. </dependency>
  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. <!-- Unit tests -->
  71. <dependency>
  72. <groupId>org.codehaus.sonar</groupId>
  73. <artifactId>sonar-testing-harness</artifactId>
  74. <version>${sonar.buildVersion}</version>
  75. <scope>test</scope>
  76. </dependency>
  77. </dependencies>
  78. <build>
  79. <resources>
  80. <resource>
  81. <directory>src/main/resources</directory>
  82. <filtering>true</filtering>
  83. </resource>
  84. </resources>
  85. <plugins>
  86. <plugin>
  87. <groupId>org.apache.maven.plugins</groupId>
  88. <artifactId>maven-assembly-plugin</artifactId>
  89. <version>2.2</version>
  90. <executions>
  91. <execution>
  92. <phase>package</phase>
  93. <goals>
  94. <goal>single</goal>
  95. </goals>
  96. <configuration>
  97. <appendAssemblyId>false</appendAssemblyId>
  98. <descriptors>
  99. <descriptor>${basedir}/src/main/assembly/assembly.xml</descriptor>
  100. </descriptors>
  101. </configuration>
  102. </execution>
  103. </executions>
  104. </plugin>
  105. </plugins>
  106. </build>
  107. </project>