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 1.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>org.sonarsource.sonarqube</groupId>
  6. <artifactId>it-plugins</artifactId>
  7. <version>6.4-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>sonar-subcategories-plugin</artifactId>
  10. <version>1.0-SNAPSHOT</version>
  11. <packaging>sonar-plugin</packaging>
  12. <name>Plugins :: SubCategories</name>
  13. <description>Plugins :: SubCategories</description>
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.sonarsource.sonarqube</groupId>
  20. <artifactId>sonar-plugin-api</artifactId>
  21. <version>${apiVersion}</version>
  22. <scope>provided</scope>
  23. </dependency>
  24. </dependencies>
  25. <build>
  26. <plugins>
  27. <plugin>
  28. <groupId>org.sonarsource.sonar-packaging-maven-plugin</groupId>
  29. <artifactId>sonar-packaging-maven-plugin</artifactId>
  30. <version>1.15</version>
  31. <extensions>true</extensions>
  32. <configuration>
  33. <pluginClass>SubCategoriesPlugin</pluginClass>
  34. </configuration>
  35. </plugin>
  36. <plugin>
  37. <groupId>org.codehaus.mojo</groupId>
  38. <artifactId>native2ascii-maven-plugin</artifactId>
  39. <version>1.0-beta-1</version>
  40. <executions>
  41. <execution>
  42. <goals>
  43. <goal>native2ascii</goal>
  44. </goals>
  45. </execution>
  46. </executions>
  47. </plugin>
  48. </plugins>
  49. </build>
  50. </project>