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/xsd/maven-4.0.0.xsd">
|
3
|
<modelVersion>4.0.0</modelVersion>
|
4
|
<parent>
|
5
|
<groupId>eu.espas</groupId>
|
6
|
<artifactId>uoa-espas-carbon</artifactId>
|
7
|
<version>3.0-SNAPSHOT</version>
|
8
|
</parent>
|
9
|
|
10
|
<artifactId>uoa-espas-pip</artifactId>
|
11
|
<name>uoa-espas-pip</name>
|
12
|
<packaging>jar</packaging>
|
13
|
<url>http://maven.apache.org</url>
|
14
|
|
15
|
<properties>
|
16
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
17
|
</properties>
|
18
|
|
19
|
<dependencies>
|
20
|
<dependency>
|
21
|
<groupId>junit</groupId>
|
22
|
<artifactId>junit</artifactId>
|
23
|
<version>3.8.1</version>
|
24
|
<scope>test</scope>
|
25
|
</dependency>
|
26
|
<dependency>
|
27
|
<groupId>log4j</groupId>
|
28
|
<artifactId>log4j</artifactId>
|
29
|
<version>(1.2, 1.5]</version>
|
30
|
<scope>provided</scope>
|
31
|
</dependency>
|
32
|
<dependency>
|
33
|
<groupId>postgresql</groupId>
|
34
|
<artifactId>postgresql</artifactId>
|
35
|
<version>9.1-901-1.jdbc4</version>
|
36
|
<scope>test</scope>
|
37
|
</dependency>
|
38
|
<dependency>
|
39
|
<groupId>org.wso2.carbon</groupId>
|
40
|
<artifactId>org.wso2.carbon.identity.entitlement</artifactId>
|
41
|
<version>4.2.0</version>
|
42
|
<scope>provided</scope>
|
43
|
</dependency>
|
44
|
<dependency>
|
45
|
<groupId>org.apache.xmlbeans</groupId>
|
46
|
<artifactId>xmlbeans</artifactId>
|
47
|
<version>2.5.0</version>
|
48
|
</dependency>
|
49
|
<dependency>
|
50
|
<groupId>commons-logging</groupId>
|
51
|
<artifactId>commons-logging</artifactId>
|
52
|
<version>1.1.1</version>
|
53
|
</dependency>
|
54
|
</dependencies>
|
55
|
|
56
|
<build>
|
57
|
<plugins>
|
58
|
<plugin>
|
59
|
<groupId>org.codehaus.mojo</groupId>
|
60
|
<artifactId>xmlbeans-maven-plugin</artifactId>
|
61
|
<version>2.3.3</version>
|
62
|
<executions>
|
63
|
<execution>
|
64
|
<goals>
|
65
|
<goal>xmlbeans</goal>
|
66
|
</goals>
|
67
|
</execution>
|
68
|
</executions>
|
69
|
<inherited>true</inherited>
|
70
|
<configuration>
|
71
|
<!--memoryInitialSize>256m</memoryInitialSize-->
|
72
|
<download>true</download>
|
73
|
<verbose>true</verbose>
|
74
|
<javaSource>1.6</javaSource>
|
75
|
<debug>true</debug>
|
76
|
<classGenerationDirectory>target/classes</classGenerationDirectory>
|
77
|
<schemaDirectory>src/main/resources/conf</schemaDirectory>
|
78
|
</configuration>
|
79
|
</plugin>
|
80
|
|
81
|
</plugins>
|
82
|
</build>
|
83
|
|
84
|
<repositories>
|
85
|
<repository>
|
86
|
<id>wso2-maven2-repository</id>
|
87
|
<url>http://dist.wso2.org/maven2</url>
|
88
|
</repository>
|
89
|
</repositories>
|
90
|
</project>
|