-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpom.xml
55 lines (55 loc) · 2.09 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>org.springframework.security.extensions</groupId>
<artifactId>spring-security-saml2-gae</artifactId>
<packaging>jar</packaging>
<version>1.0.0.RELEASE-SNAPSHOT</version>
<name>Spring Security SAML v2 GAE library</name>
<description>Library enables deployment of Spring SAML application on Google Application Engine.</description>
<url>https://github.com/vschafer/spring-security-saml-gae</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>vschafer</id>
<name>Vladimir Schafer</name>
<email>vladimir.schafer at gmail.com</email>
<timezone>+2</timezone>
</developer>
</developers>
<build>
<finalName>spring-security-saml2-gae</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.springframework.security.extensions</groupId>
<artifactId>spring-security-saml2-core</artifactId>
<version>1.0.0.RELEASE</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.google.appengine</groupId>
<artifactId>appengine-api-1.0-sdk</artifactId>
<version>1.9.17</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>