|
3 | 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
4 | 4 | <modelVersion>4.0.0</modelVersion> |
5 | 5 |
|
6 | | - <groupId>org.examples.jet.snapshot</groupId> |
7 | 6 | <artifactId>jet-pipelines</artifactId> |
8 | | - <version>1.0-SNAPSHOT</version> |
9 | 7 |
|
10 | | - <name>jet-pipelines</name> |
| 8 | + <parent> |
| 9 | + <artifactId>jet</artifactId> |
| 10 | + <groupId>com.hazelcast.samples.jet</groupId> |
| 11 | + <version>0.1-SNAPSHOT</version> |
| 12 | + <relativePath>../../pom.xml</relativePath> |
| 13 | + </parent> |
11 | 14 |
|
12 | | - <properties> |
13 | | - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
14 | | - <maven.compiler.source>17</maven.compiler.source> |
15 | | - <maven.compiler.target>17</maven.compiler.target> |
16 | | - <hazelcast-version>5.4.0</hazelcast-version> |
17 | | - <junit-jupiter-api-version>5.8.2</junit-jupiter-api-version> |
18 | | - <maven-surefire-plugin-version>3.0.0-M7</maven-surefire-plugin-version> |
19 | | - </properties> |
| 15 | + <name>jet-pipelines</name> |
20 | 16 |
|
21 | 17 | <dependencies> |
22 | 18 | <dependency> |
23 | 19 | <groupId>com.hazelcast</groupId> |
24 | 20 | <artifactId>hazelcast</artifactId> |
25 | | - <version>${hazelcast-version}</version> |
26 | | - <scope>provided</scope> |
| 21 | + <version>${hazelcast.version}</version> |
27 | 22 | </dependency> |
28 | 23 | <dependency> |
29 | 24 | <groupId>org.junit.jupiter</groupId> |
30 | 25 | <artifactId>junit-jupiter-api</artifactId> |
31 | | - <version>${junit-jupiter-api-version}</version> |
32 | 26 | <scope>test</scope> |
33 | 27 | </dependency> |
34 | 28 | </dependencies> |
|
38 | 32 | <plugin> |
39 | 33 | <groupId>org.apache.maven.plugins</groupId> |
40 | 34 | <artifactId>maven-surefire-plugin</artifactId> |
41 | | - <version>${maven-surefire-plugin-version}</version> |
42 | 35 | </plugin> |
43 | 36 | </plugins> |
44 | 37 | </build> |
|
0 commit comments