1 |
22591
|
george.ath
|
<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 |
25440
|
george.ath
|
<parent>
|
5 |
|
|
<groupId>eu.espas</groupId>
|
6 |
|
|
<artifactId>uoa-espas-carbon</artifactId>
|
7 |
27946
|
antonis.le
|
<version>3.0-SNAPSHOT</version>
|
8 |
25440
|
george.ath
|
</parent>
|
9 |
22591
|
george.ath
|
|
10 |
|
|
<artifactId>uoa-espas-pip</artifactId>
|
11 |
25440
|
george.ath
|
<name>uoa-espas-pip</name>
|
12 |
22591
|
george.ath
|
<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 |
22687
|
george.ath
|
<version>(1.2, 1.5]</version>
|
30 |
|
|
<scope>provided</scope>
|
31 |
22591
|
george.ath
|
</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 |
23808
|
george.ath
|
<scope>provided</scope>
|
43 |
22591
|
george.ath
|
</dependency>
|
44 |
|
|
<dependency>
|
45 |
|
|
<groupId>org.apache.xmlbeans</groupId>
|
46 |
|
|
<artifactId>xmlbeans</artifactId>
|
47 |
|
|
<version>2.5.0</version>
|
48 |
|
|
</dependency>
|
49 |
23747
|
george.ath
|
<dependency>
|
50 |
|
|
<groupId>commons-logging</groupId>
|
51 |
|
|
<artifactId>commons-logging</artifactId>
|
52 |
|
|
<version>1.1.1</version>
|
53 |
|
|
</dependency>
|
54 |
22591
|
george.ath
|
</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>
|