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.

52 lines
1.7 KiB

6 years ago
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <parent>
  4. <groupId>org.keycloak.extensions</groupId>
  5. <artifactId>keycloak-discord-parent</artifactId>
  6. <version>1.0.0-SNAPSHOT</version>
  7. </parent>
  8. <name>Keycloak Discord EJB</name>
  9. <description/>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>keycloak-discord-ejb</artifactId>
  12. <packaging>jar</packaging>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.keycloak</groupId>
  16. <artifactId>keycloak-core</artifactId>
  17. <scope>provided</scope>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.keycloak</groupId>
  21. <artifactId>keycloak-server-spi</artifactId>
  22. <scope>provided</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.keycloak</groupId>
  26. <artifactId>keycloak-server-spi-private</artifactId>
  27. <scope>provided</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.keycloak</groupId>
  31. <artifactId>keycloak-services</artifactId>
  32. <scope>provided</scope>
  33. </dependency>
  34. </dependencies>
  35. <build>
  36. <plugins>
  37. <plugin>
  38. <groupId>org.apache.maven.plugins</groupId>
  39. <artifactId>maven-compiler-plugin</artifactId>
  40. <version>2.3.2</version>
  41. <configuration>
  42. <source>1.8</source>
  43. <target>1.8</target>
  44. </configuration>
  45. </plugin>
  46. </plugins>
  47. </build>
  48. </project>