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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.sonarsource.sonarqube</groupId>
  7. <artifactId>it-plugins</artifactId>
  8. <version>6.4-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>base-auth-plugin</artifactId>
  11. <version>1.0-SNAPSHOT</version>
  12. <packaging>sonar-plugin</packaging>
  13. <name>Plugins :: Fake Base Authentication Plugin</name>
  14. <description>Test for base authentication plugin (like openid)</description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.sonarsource.sonarqube</groupId>
  18. <artifactId>sonar-plugin-api</artifactId>
  19. <version>${apiVersion}</version>
  20. <scope>provided</scope>
  21. </dependency>
  22. <dependency>
  23. <groupId>javax.servlet</groupId>
  24. <artifactId>javax.servlet-api</artifactId>
  25. <version>3.0.1</version>
  26. <scope>provided</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.google.guava</groupId>
  30. <artifactId>guava</artifactId>
  31. <version>17.0</version>
  32. <exclusions>
  33. <exclusion>
  34. <!-- should be declared with scope provided -->
  35. <groupId>com.google.code.findbugs</groupId>
  36. <artifactId>jsr305</artifactId>
  37. </exclusion>
  38. </exclusions>
  39. </dependency>
  40. </dependencies>
  41. <build>
  42. <plugins>
  43. <plugin>
  44. <groupId>org.sonarsource.sonar-packaging-maven-plugin</groupId>
  45. <artifactId>sonar-packaging-maven-plugin</artifactId>
  46. <version>1.15</version>
  47. <configuration>
  48. <pluginClass>FakeBaseAuthPlugin</pluginClass>
  49. </configuration>
  50. </plugin>
  51. </plugins>
  52. </build>
  53. </project>