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

123456789101112131415161718192021222324252627282930313233343536373839404142
  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.tests</groupId>
  6. <artifactId>plugins</artifactId>
  7. <version>6.5-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>property-sets-plugin</artifactId>
  10. <version>1.0-SNAPSHOT</version>
  11. <packaging>sonar-plugin</packaging>
  12. <description>Plugins :: Property Sets</description>
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.sonarsource.sonarqube</groupId>
  19. <artifactId>sonar-plugin-api</artifactId>
  20. <version>${apiVersion}</version>
  21. <scope>provided</scope>
  22. </dependency>
  23. </dependencies>
  24. <build>
  25. <plugins>
  26. <plugin>
  27. <groupId>org.sonarsource.sonar-packaging-maven-plugin</groupId>
  28. <artifactId>sonar-packaging-maven-plugin</artifactId>
  29. <version>1.15</version>
  30. <extensions>true</extensions>
  31. <configuration>
  32. <pluginClass>PropertySetsPlugin</pluginClass>
  33. </configuration>
  34. </plugin>
  35. </plugins>
  36. </build>
  37. </project>