| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?xml version="1.0" encoding="UTF-8"?>
- <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">
- <modelVersion>4.0.0</modelVersion>
- <groupId>net.unicon.cas</groupId>
- <artifactId>cas-client-autoconfig-support</artifactId>
- <version>2.3.0-GA</version>
- <name>CAS client autoconfig support</name>
- <description>Annotation-based configuration support for Apereo CAS Java clients</description>
- <url>https://github.com/Unicon/cas-client-autoconfig-support</url>
- <licenses>
- <license>
- <name>The Apache Software License, Version 2.0</name>
- <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
- <distribution>repo</distribution>
- </license>
- </licenses>
- <developers>
- <developer>
- <id>dima767</id>
- <name>Dmitriy Kopylenko</name>
- </developer>
- </developers>
- <scm>
- <connection>scm:git@github.com:Unicon/cas-client-autoconfig-support.git</connection>
- <developerConnection>scm:git@github.com:Unicon/cas-client-autoconfig-support.git</developerConnection>
- <url>scm:git@github.com:Unicon/cas-client-autoconfig-support.git</url>
- </scm>
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter</artifactId>
- <version>2.1.4.RELEASE</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>javax.validation</groupId>
- <artifactId>validation-api</artifactId>
- <version>2.0.0.Final</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.jasig.cas.client</groupId>
- <artifactId>cas-client-core</artifactId>
- <version>3.5.1</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.jasig.cas.client</groupId>
- <artifactId>cas-client-support-saml</artifactId>
- <version>3.5.1</version>
- <scope>compile</scope>
- </dependency>
- </dependencies>
- <dependencyManagement>
- <dependencies/>
- </dependencyManagement>
- </project>
|