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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>org.codehaus.sonar</groupId>
  6. <artifactId>sonar</artifactId>
  7. <version>2.3-SNAPSHOT</version>
  8. <relativePath>../..</relativePath>
  9. </parent>
  10. <groupId>org.codehaus.sonar.plugins</groupId>
  11. <artifactId>sonar-squid-java-plugin</artifactId>
  12. <packaging>sonar-plugin</packaging>
  13. <name>Sonar :: Plugins :: Squid Java</name>
  14. <description>Squid analyzer for Java.</description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.codehaus.sonar</groupId>
  18. <artifactId>sonar-deprecated</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.codehaus.sonar</groupId>
  22. <artifactId>sonar-squid</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.codehaus.sonar</groupId>
  26. <artifactId>sonar-graph</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>asm</groupId>
  30. <artifactId>asm-all</artifactId>
  31. <version>3.2</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.codehaus.sonar</groupId>
  35. <artifactId>sonar-plugin-api</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>checkstyle</groupId>
  39. <artifactId>checkstyle</artifactId>
  40. <version>5.1</version>
  41. <exclusions>
  42. <exclusion>
  43. <groupId>commons-logging</groupId>
  44. <artifactId>commons-logging</artifactId>
  45. </exclusion>
  46. <exclusion>
  47. <!-- optimization for JAR size -->
  48. <groupId>commons-cli</groupId>
  49. <artifactId>commons-cli</artifactId>
  50. </exclusion>
  51. </exclusions>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.apache.maven</groupId>
  55. <artifactId>maven-project</artifactId>
  56. <scope>provided</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.apache.maven</groupId>
  60. <artifactId>maven-artifact</artifactId>
  61. <scope>provided</scope>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.apache.maven.shared</groupId>
  65. <artifactId>maven-common-artifact-filters</artifactId>
  66. <exclusions>
  67. <!-- optimizations to reduce the size of the plugin JAR -->
  68. <exclusion>
  69. <groupId>org.apache.maven</groupId>
  70. <artifactId>maven-core</artifactId>
  71. </exclusion>
  72. <exclusion>
  73. <groupId>org.apache.maven</groupId>
  74. <artifactId>maven-artifact</artifactId>
  75. </exclusion>
  76. <exclusion>
  77. <groupId>org.apache.maven</groupId>
  78. <artifactId>maven-model</artifactId>
  79. </exclusion>
  80. <exclusion>
  81. <groupId>org.apache.maven</groupId>
  82. <artifactId>maven-plugin-api</artifactId>
  83. </exclusion>
  84. <exclusion>
  85. <groupId>org.apache.maven.shared</groupId>
  86. <artifactId>maven-plugin-testing-harness</artifactId>
  87. </exclusion>
  88. <exclusion>
  89. <groupId>org.codehaus.plexus</groupId>
  90. <artifactId>plexus-container-default</artifactId>
  91. </exclusion>
  92. <exclusion>
  93. <groupId>org.codehaus.plexus</groupId>
  94. <artifactId>plexus-utils</artifactId>
  95. </exclusion>
  96. </exclusions>
  97. </dependency>
  98. <dependency>
  99. <groupId>commons-io</groupId>
  100. <artifactId>commons-io</artifactId>
  101. </dependency>
  102. <dependency>
  103. <groupId>classworlds</groupId>
  104. <artifactId>classworlds</artifactId>
  105. <scope>provided</scope>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.codehaus.sonar</groupId>
  109. <artifactId>sonar-testing-harness</artifactId>
  110. <scope>test</scope>
  111. </dependency>
  112. </dependencies>
  113. <build>
  114. <plugins>
  115. <plugin>
  116. <groupId>org.codehaus.sonar</groupId>
  117. <artifactId>sonar-packaging-maven-plugin</artifactId>
  118. <extensions>true</extensions>
  119. <configuration>
  120. <pluginKey>squid-java</pluginKey>
  121. <pluginName>Squid for Java</pluginName>
  122. <pluginClass>org.sonar.plugins.squid.SquidPlugin</pluginClass>
  123. </configuration>
  124. </plugin>
  125. <plugin>
  126. <artifactId>maven-deploy-plugin</artifactId>
  127. <configuration>
  128. <skip>true</skip>
  129. </configuration>
  130. </plugin>
  131. </plugins>
  132. </build>
  133. </project>