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.

123456789101112131415161718192021222324252627282930313233343536
  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>settings-encryption-plugin</artifactId>
  10. <version>1.0-SNAPSHOT</version>
  11. <packaging>sonar-plugin</packaging>
  12. <description>Plugins :: Settings Encryption</description>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.sonarsource.sonarqube</groupId>
  16. <artifactId>sonar-plugin-api</artifactId>
  17. <version>${apiVersion}</version>
  18. <scope>provided</scope>
  19. </dependency>
  20. </dependencies>
  21. <build>
  22. <plugins>
  23. <plugin>
  24. <groupId>org.sonarsource.sonar-packaging-maven-plugin</groupId>
  25. <artifactId>sonar-packaging-maven-plugin</artifactId>
  26. <version>1.15</version>
  27. <extensions>true</extensions>
  28. <configuration>
  29. <pluginClass>SettingsEncryptionPlugin</pluginClass>
  30. </configuration>
  31. </plugin>
  32. </plugins>
  33. </build>
  34. </project>