forked from hazelcast/hazelcast-simulator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
99 lines (87 loc) · 3.3 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.hazelcast.stabilizer</groupId>
<artifactId>stabilizer-root</artifactId>
<version>0.3-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Hazelcast Stabilizer Root</name>
<repositories>
<repository>
<id>snapshot-repository</id>
<name>Maven2 Snapshot Repository</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</repository>
<repository>
<id>jclouds-snapshots</id>
<url>https://repository.apache.org/content/repositories/snapshots</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<properties>
<!-- we want to remain java 1.6 compatible -->
<java.version>1.6</java.version>
<junit.version>4.11</junit.version>
<hazelcast.version>3.2.1</hazelcast.version>
<jopt.version>4.4</jopt.version>
<log4j.version>1.2.17</log4j.version>
<jclouds.version>1.7.2</jclouds.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<modules>
<module>stabilizer</module>
<module>archetype</module>
<module>dist</module>
</modules>
<scm>
<connection>scm:git:[email protected]:hazelcast/hazelcast-stabilizer.git</connection>
<developerConnection>scm:git:[email protected]:hazelcast/hazelcast-stabilizer.git</developerConnection>
<url>https://github.com/hazelcast/hazelcast-stabilizer</url>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>Github</system>
<url>https://github.com/hazelcast/hazelcast-stabilizer</url>
</issueManagement>
<organization>
<name>Hazelcast, Inc.</name>
<url>http://www.hazelcast.com/</url>
</organization>
<developers>
<developer>
<id>pveentjer</id>
<name>Peter Veentjer</name>
<email>[email protected]</email>
<organization>Hazelcast</organization>
</developer>
</developers>
<distributionManagement>
<repository>
<id>release-repository</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
<snapshotRepository>
<id>snapshot-repository</id>
<name>Maven2 Snapshot Repository</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<uniqueVersion>false</uniqueVersion>
</snapshotRepository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
</plugins>
</build>
</project>