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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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.11</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-java-api</artifactId>
  19. <scope>provided</scope>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.codehaus.sonar</groupId>
  23. <artifactId>sonar-plugin-api</artifactId>
  24. <scope>provided</scope>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.codehaus.sonar</groupId>
  28. <artifactId>sonar-squid</artifactId>
  29. <scope>provided</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.codehaus.sonar</groupId>
  33. <artifactId>sonar-graph</artifactId>
  34. <scope>provided</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>asm</groupId>
  38. <artifactId>asm-all</artifactId>
  39. <version>3.2</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>checkstyle</groupId>
  43. <artifactId>checkstyle</artifactId>
  44. <version>5.1</version>
  45. <exclusions>
  46. <exclusion>
  47. <groupId>commons-logging</groupId>
  48. <artifactId>commons-logging</artifactId>
  49. </exclusion>
  50. <exclusion>
  51. <!-- optimization for JAR size -->
  52. <groupId>commons-cli</groupId>
  53. <artifactId>commons-cli</artifactId>
  54. </exclusion>
  55. <exclusion>
  56. <!-- See SONAR-2512 -->
  57. <groupId>commons-beanutils</groupId>
  58. <artifactId>commons-beanutils-core</artifactId>
  59. </exclusion>
  60. </exclusions>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.apache.maven</groupId>
  64. <artifactId>maven-project</artifactId>
  65. <scope>provided</scope>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.apache.maven</groupId>
  69. <artifactId>maven-artifact</artifactId>
  70. <scope>provided</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>commons-io</groupId>
  74. <artifactId>commons-io</artifactId>
  75. <scope>provided</scope>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.codehaus.plexus</groupId>
  79. <artifactId>plexus-classworlds</artifactId>
  80. <scope>provided</scope>
  81. </dependency>
  82. <!-- unit tests -->
  83. <dependency>
  84. <groupId>org.codehaus.sonar</groupId>
  85. <artifactId>sonar-testing-harness</artifactId>
  86. <scope>test</scope>
  87. </dependency>
  88. </dependencies>
  89. <build>
  90. <plugins>
  91. <plugin>
  92. <groupId>org.codehaus.sonar</groupId>
  93. <artifactId>sonar-packaging-maven-plugin</artifactId>
  94. <extensions>true</extensions>
  95. <configuration>
  96. <pluginName>Squid for Java</pluginName>
  97. <pluginClass>org.sonar.plugins.squid.SquidPlugin</pluginClass>
  98. </configuration>
  99. </plugin>
  100. </plugins>
  101. </build>
  102. </project>