|
1 | 1 | <!-- |
2 | | - ~ Copyright (c) 2008-2016, Hazelcast, Inc. All Rights Reserved. |
| 2 | + ~ Copyright 2020 Hazelcast Inc. |
3 | 3 | ~ |
4 | | - ~ Licensed under the Apache License, Version 2.0 (the "License"); |
5 | | - ~ you may not use this file except in compliance with the License. |
6 | | - ~ You may obtain a copy of the License at |
| 4 | + ~ Licensed under the Hazelcast Community License (the "License"); you may not use |
| 5 | + ~ this file except in compliance with the License. You may obtain a copy of the |
| 6 | + ~ License at |
7 | 7 | ~ |
8 | | - ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | + ~ http://hazelcast.com/hazelcast-community-license |
9 | 9 | ~ |
10 | 10 | ~ Unless required by applicable law or agreed to in writing, software |
11 | | - ~ distributed under the License is distributed on an "AS IS" BASIS, |
12 | | - ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
13 | | - ~ See the License for the specific language governing permissions and |
14 | | - ~ limitations under the License. |
| 11 | + ~ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 12 | + ~ WARRANTIES OF ANY KIND, either express or implied. See the License for the |
| 13 | + ~ specific language governing permissions and limitations under the License. |
15 | 14 | --> |
16 | 15 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
17 | 16 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 |
|
30 | 29 | <main.basedir>${project.basedir}</main.basedir> |
31 | 30 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
32 | 31 |
|
33 | | - <jdk.version>1.6</jdk.version> |
| 32 | + <jdk.version>1.8</jdk.version> |
34 | 33 | <target.dir>target</target.dir> |
35 | 34 | <maven.build.timestamp.format>yyyyMMdd</maven.build.timestamp.format> |
36 | 35 | <timestamp>${maven.build.timestamp}</timestamp> |
37 | 36 |
|
38 | | - <hazelcast.version>3.7</hazelcast.version> |
| 37 | + <hazelcast.version>4.0</hazelcast.version> |
39 | 38 |
|
40 | 39 | <log4j.version>1.2.12</log4j.version> |
41 | 40 | <junit.version>4.12</junit.version> |
|
66 | 65 | <maven.jacoco.plugin.version>0.7.9</maven.jacoco.plugin.version> |
67 | 66 | </properties> |
68 | 67 |
|
69 | | - <licenses> |
70 | | - <license> |
71 | | - <name>The Apache Software License, Version 2.0</name> |
72 | | - <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
73 | | - <distribution>repo</distribution> |
74 | | - </license> |
75 | | - </licenses> |
76 | 68 | <scm> |
77 | 69 | <connection>scm:git:git://github.com/hazelcast/hazelcast-wm.git</connection> |
78 | 70 | <developerConnection>scm:git:git@github.com:hazelcast/hazelcast-wm.git</developerConnection> |
|
307 | 299 | <artifactId>hazelcast</artifactId> |
308 | 300 | <version>${hazelcast.version}</version> |
309 | 301 | </dependency> |
310 | | - <dependency> |
311 | | - <groupId>com.hazelcast</groupId> |
312 | | - <artifactId>hazelcast-client</artifactId> |
313 | | - <version>${hazelcast.version}</version> |
314 | | - <scope>provided</scope> |
315 | | - <optional>true</optional> |
316 | | - </dependency> |
317 | 302 | <dependency> |
318 | 303 | <groupId>org.springframework</groupId> |
319 | 304 | <artifactId>spring-core</artifactId> |
|
590 | 575 | <profile> |
591 | 576 | <id>master</id> |
592 | 577 | <properties> |
593 | | - <hazelcast.version>4.0-SNAPSHOT</hazelcast.version> |
| 578 | + <hazelcast.version>4.1-SNAPSHOT</hazelcast.version> |
594 | 579 | </properties> |
595 | 580 | <dependencies> |
596 | 581 | <dependency> |
597 | 582 | <groupId>com.hazelcast</groupId> |
598 | 583 | <artifactId>hazelcast</artifactId> |
599 | 584 | <version>${hazelcast.version}</version> |
600 | 585 | </dependency> |
601 | | - <dependency> |
602 | | - <groupId>com.hazelcast</groupId> |
603 | | - <artifactId>hazelcast-client</artifactId> |
604 | | - <version>${hazelcast.version}</version> |
605 | | - <scope>provided</scope> |
606 | | - <optional>true</optional> |
607 | | - </dependency> |
608 | 586 | </dependencies> |
609 | 587 | <build> |
610 | 588 | <plugins> |
|
0 commit comments