1 |
22490
|
george.ath
|
<?xml version="1.0"?>
|
2 |
|
|
<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"
|
3 |
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
4 |
|
|
<modelVersion>4.0.0</modelVersion>
|
5 |
|
|
<parent>
|
6 |
|
|
<groupId>eu.espas</groupId>
|
7 |
|
|
<artifactId>uoa-espas-carbon</artifactId>
|
8 |
27946
|
antonis.le
|
<version>3.0-SNAPSHOT</version>
|
9 |
22490
|
george.ath
|
</parent>
|
10 |
|
|
<artifactId>uoa-espas-pep</artifactId>
|
11 |
|
|
<name>uoa-espas-pep</name>
|
12 |
|
|
<url>http://maven.apache.org</url>
|
13 |
22515
|
george.ath
|
|
14 |
|
|
<build>
|
15 |
|
|
<plugins>
|
16 |
|
|
<plugin>
|
17 |
|
|
<groupId>org.apache.maven.plugins</groupId>
|
18 |
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
19 |
|
|
<version>2.16</version>
|
20 |
|
|
<configuration>
|
21 |
|
|
<systemPropertyVariables>
|
22 |
|
|
<systemPropertyVariables>
|
23 |
|
|
<log4j.configuration>${basedir}/src/main/resources/log4j.properties</log4j.configuration>
|
24 |
|
|
</systemPropertyVariables>
|
25 |
|
|
</systemPropertyVariables>
|
26 |
|
|
</configuration>
|
27 |
|
|
</plugin>
|
28 |
|
|
</plugins>
|
29 |
|
|
</build>
|
30 |
|
|
|
31 |
22490
|
george.ath
|
<properties>
|
32 |
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
33 |
|
|
</properties>
|
34 |
25440
|
george.ath
|
|
35 |
22490
|
george.ath
|
<dependencies>
|
36 |
|
|
<dependency>
|
37 |
|
|
<groupId>junit</groupId>
|
38 |
|
|
<artifactId>junit</artifactId>
|
39 |
|
|
<version>3.8.1</version>
|
40 |
|
|
<scope>test</scope>
|
41 |
|
|
</dependency>
|
42 |
|
|
<dependency>
|
43 |
|
|
<groupId>log4j</groupId>
|
44 |
|
|
<artifactId>log4j</artifactId>
|
45 |
|
|
<version>1.2.17</version>
|
46 |
|
|
<type>jar</type>
|
47 |
|
|
</dependency>
|
48 |
|
|
<dependency>
|
49 |
|
|
<groupId>org.wso2.carbon</groupId>
|
50 |
|
|
<artifactId>org.wso2.carbon.authenticator.stub</artifactId>
|
51 |
|
|
<version>4.2.0</version>
|
52 |
|
|
<type>jar</type>
|
53 |
|
|
</dependency>
|
54 |
|
|
<dependency>
|
55 |
|
|
<groupId>org.wso2.carbon</groupId>
|
56 |
|
|
<artifactId>org.wso2.carbon.identity.entitlement.stub</artifactId>
|
57 |
|
|
<version>4.0.0</version>
|
58 |
|
|
<type>jar</type>
|
59 |
|
|
</dependency>
|
60 |
|
|
<dependency>
|
61 |
|
|
<groupId>org.wso2.securevault</groupId>
|
62 |
|
|
<artifactId>org.wso2.securevault</artifactId>
|
63 |
|
|
<version>1.0.0-wso2v2</version>
|
64 |
|
|
</dependency>
|
65 |
22515
|
george.ath
|
<dependency>
|
66 |
|
|
<groupId>org.apache.httpcomponents.wso2</groupId>
|
67 |
|
|
<artifactId>httpclient</artifactId>
|
68 |
|
|
<version>4.1.1-wso2v1</version>
|
69 |
|
|
</dependency>
|
70 |
|
|
<dependency>
|
71 |
|
|
<groupId>org.apache.axis2.wso2</groupId>
|
72 |
|
|
<artifactId>axis2-client</artifactId>
|
73 |
|
|
<version>1.6.1.wso2v7</version>
|
74 |
|
|
</dependency>
|
75 |
25440
|
george.ath
|
<dependency>
|
76 |
|
|
<groupId>org.springframework</groupId>
|
77 |
|
|
<artifactId>spring</artifactId>
|
78 |
|
|
<version>2.5.6</version>
|
79 |
|
|
</dependency>
|
80 |
22490
|
george.ath
|
</dependencies>
|
81 |
|
|
|
82 |
22515
|
george.ath
|
<repositories>
|
83 |
22490
|
george.ath
|
<repository>
|
84 |
|
|
<id>wso2-maven2-repository</id>
|
85 |
|
|
<url>http://dist.wso2.org/maven2</url>
|
86 |
|
|
</repository>
|
87 |
|
|
</repositories>
|
88 |
|
|
|
89 |
22515
|
george.ath
|
|
90 |
22877
|
antonis.le
|
</project>
|