您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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>16</version>
  7. </parent>
  8. <groupId>org.codehaus.sonar.runner</groupId>
  9. <artifactId>sonar-runner</artifactId>
  10. <version>2.1-SNAPSHOT</version>
  11. <packaging>pom</packaging>
  12. <name>Sonar Runner</name>
  13. <modules>
  14. <module>sonar-runner-api</module>
  15. <module>sonar-runner-impl</module>
  16. <module>sonar-runner-dist</module>
  17. </modules>
  18. <url>http://docs.codehaus.org/display/SONAR/Sonar+Standalone+Runner</url>
  19. <inceptionYear>2011</inceptionYear>
  20. <organization>
  21. <name>SonarSource</name>
  22. <url>http://www.sonarsource.com</url>
  23. </organization>
  24. <licenses>
  25. <license>
  26. <name>GNU LGPL 3</name>
  27. <url>http://www.gnu.org/licenses/lgpl.txt</url>
  28. <distribution>repo</distribution>
  29. </license>
  30. </licenses>
  31. <developers>
  32. <developer>
  33. <id>godin</id>
  34. <name>Evgeny Mandrikov</name>
  35. <timezone>+3</timezone>
  36. </developer>
  37. <developer>
  38. <id>simon.brandhof</id>
  39. <name>Simon Brandhof</name>
  40. <timezone>+1</timezone>
  41. </developer>
  42. <developer>
  43. <id>bellingard</id>
  44. <name>Fabrice Bellingard</name>
  45. <timezone>+1</timezone>
  46. </developer>
  47. <developer>
  48. <id>henryju</id>
  49. <name>Julien Henry</name>
  50. <timezone>+1</timezone>
  51. </developer>
  52. </developers>
  53. <scm>
  54. <connection>scm:git:git@github.com:SonarCommunity/sonar-runner.git</connection>
  55. <developerConnection>scm:git:git@github.com:SonarCommunity/sonar-runner.git</developerConnection>
  56. <url>https://github.com/SonarCommunity/sonar-runner</url>
  57. </scm>
  58. <issueManagement>
  59. <system>JIRA</system>
  60. <url>http://jira.codehaus.org/browse/SONARPLUGINS/component/14640</url>
  61. </issueManagement>
  62. <ciManagement>
  63. </ciManagement>
  64. <properties>
  65. <sonar.buildVersion>3.5-RC1</sonar.buildVersion>
  66. <maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
  67. </properties>
  68. </project>