forked from esteratz/openspaces-ldap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
executable file
·76 lines (74 loc) · 2.21 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.openspaces.ldap</groupId>
<artifactId>openspaces-ldap</artifactId>
<version>1.0</version>
<name>openspaces-ldap</name>
<packaging>pom</packaging>
<repositories>
<repository>
<id>org.openspaces</id>
<url>http://maven-repository.openspaces.org</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>org.openspaces</id>
<url>http://maven-repository.openspaces.org</url>
</pluginRepository>
</pluginRepositories>
<properties>
<gsVersion>9.7.0-10496-RELEASE</gsVersion>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<junit.version>4.11</junit.version>
<mockito.version>1.9.5</mockito.version>
<powermock.version>1.6.0</powermock.version>
</properties>
<modules>
<module>manager</module>
<module>test</module>
</modules>
<build>
<defaultGoal>package</defaultGoal>
<testResources>
<testResource>
<directory>src/test/java</directory>
<includes>
<include>**/*.xml</include>
</includes>
</testResource>
</testResources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
<version>2.3.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2-beta-2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-openspaces-plugin</artifactId>
<version>10.0.1-11800-RELEASE</version>
</plugin>
</plugins>
</build>
<!-- Align spring versions for all projects using openspaces -->
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.gigaspaces</groupId>
<artifactId>gs-openspaces</artifactId>
<version>10.1.0-12595-RC</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>