cas-client-autoconfig-support-2.3.0-GA.pom 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>net.unicon.cas</groupId>
  5. <artifactId>cas-client-autoconfig-support</artifactId>
  6. <version>2.3.0-GA</version>
  7. <name>CAS client autoconfig support</name>
  8. <description>Annotation-based configuration support for Apereo CAS Java clients</description>
  9. <url>https://github.com/Unicon/cas-client-autoconfig-support</url>
  10. <licenses>
  11. <license>
  12. <name>The Apache Software License, Version 2.0</name>
  13. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  14. <distribution>repo</distribution>
  15. </license>
  16. </licenses>
  17. <developers>
  18. <developer>
  19. <id>dima767</id>
  20. <name>Dmitriy Kopylenko</name>
  21. </developer>
  22. </developers>
  23. <scm>
  24. <connection>scm:git@github.com:Unicon/cas-client-autoconfig-support.git</connection>
  25. <developerConnection>scm:git@github.com:Unicon/cas-client-autoconfig-support.git</developerConnection>
  26. <url>scm:git@github.com:Unicon/cas-client-autoconfig-support.git</url>
  27. </scm>
  28. <dependencies>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter</artifactId>
  32. <version>2.1.4.RELEASE</version>
  33. <scope>compile</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>javax.validation</groupId>
  37. <artifactId>validation-api</artifactId>
  38. <version>2.0.0.Final</version>
  39. <scope>compile</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.jasig.cas.client</groupId>
  43. <artifactId>cas-client-core</artifactId>
  44. <version>3.5.1</version>
  45. <scope>compile</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.jasig.cas.client</groupId>
  49. <artifactId>cas-client-support-saml</artifactId>
  50. <version>3.5.1</version>
  51. <scope>compile</scope>
  52. </dependency>
  53. </dependencies>
  54. <dependencyManagement>
  55. <dependencies/>
  56. </dependencyManagement>
  57. </project>