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

1234567891011121314151617181920212223242526272829303132333435363738
  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>7.1-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>access-secured-props-plugin</artifactId>
  10. <packaging>sonar-plugin</packaging>
  11. <name>Plugins :: Access Secured Properties</name>
  12. <version>1.0.2.42</version>
  13. <description>Access .secured properties</description>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.sonarsource.sonarqube</groupId>
  17. <artifactId>sonar-plugin-api</artifactId>
  18. <version>${apiVersion}</version>
  19. <scope>provided</scope>
  20. </dependency>
  21. </dependencies>
  22. <build>
  23. <plugins>
  24. <plugin>
  25. <groupId>org.sonarsource.sonar-packaging-maven-plugin</groupId>
  26. <artifactId>sonar-packaging-maven-plugin</artifactId>
  27. <version>1.18.0.372</version>
  28. <extensions>true</extensions>
  29. <configuration>
  30. <pluginClass>AccessSecuredPropsPlugin</pluginClass>
  31. </configuration>
  32. </plugin>
  33. </plugins>
  34. </build>
  35. </project>