|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 | <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"> |
| 3 | + <parent> |
| 4 | + <artifactId>operator-samples</artifactId> |
| 5 | + <groupId>com.hazelcast.samples</groupId> |
| 6 | + <version>0.1-SNAPSHOT</version> |
| 7 | + <relativePath>../../pom.xml</relativePath> |
| 8 | + </parent> |
3 | 9 | <modelVersion>4.0.0</modelVersion> |
4 | 10 | <groupId>com.hazelcast.operator.mongodb</groupId> |
5 | 11 | <artifactId>mapstore-mongodb</artifactId> |
|
65 | 71 | </build> |
66 | 72 | </profile> |
67 | 73 | </profiles> |
| 74 | + <dependencies> |
| 75 | + <dependency> |
| 76 | + <groupId>org.junit.jupiter</groupId> |
| 77 | + <artifactId>junit-jupiter-api</artifactId> |
| 78 | + <version>5.11.4</version> |
| 79 | + <scope>test</scope> |
| 80 | + <exclusions> |
| 81 | + <exclusion> |
| 82 | + <artifactId>opentest4j</artifactId> |
| 83 | + <groupId>org.opentest4j</groupId> |
| 84 | + </exclusion> |
| 85 | + <exclusion> |
| 86 | + <artifactId>apiguardian-api</artifactId> |
| 87 | + <groupId>org.apiguardian</groupId> |
| 88 | + </exclusion> |
| 89 | + </exclusions> |
| 90 | + </dependency> |
| 91 | + <dependency> |
| 92 | + <groupId>org.junit.vintage</groupId> |
| 93 | + <artifactId>junit-vintage-engine</artifactId> |
| 94 | + <version>5.11.4</version> |
| 95 | + <scope>test</scope> |
| 96 | + <exclusions> |
| 97 | + <exclusion> |
| 98 | + <artifactId>junit-platform-engine</artifactId> |
| 99 | + <groupId>org.junit.platform</groupId> |
| 100 | + </exclusion> |
| 101 | + <exclusion> |
| 102 | + <artifactId>junit</artifactId> |
| 103 | + <groupId>junit</groupId> |
| 104 | + </exclusion> |
| 105 | + <exclusion> |
| 106 | + <artifactId>apiguardian-api</artifactId> |
| 107 | + <groupId>org.apiguardian</groupId> |
| 108 | + </exclusion> |
| 109 | + </exclusions> |
| 110 | + </dependency> |
| 111 | + <dependency> |
| 112 | + <groupId>org.junit.jupiter</groupId> |
| 113 | + <artifactId>junit-jupiter-engine</artifactId> |
| 114 | + <version>5.11.4</version> |
| 115 | + <scope>test</scope> |
| 116 | + <exclusions> |
| 117 | + <exclusion> |
| 118 | + <artifactId>junit-platform-engine</artifactId> |
| 119 | + <groupId>org.junit.platform</groupId> |
| 120 | + </exclusion> |
| 121 | + <exclusion> |
| 122 | + <artifactId>apiguardian-api</artifactId> |
| 123 | + <groupId>org.apiguardian</groupId> |
| 124 | + </exclusion> |
| 125 | + </exclusions> |
| 126 | + </dependency> |
| 127 | + <dependency> |
| 128 | + <groupId>org.junit.platform</groupId> |
| 129 | + <artifactId>junit-platform-commons</artifactId> |
| 130 | + <version>1.11.4</version> |
| 131 | + <scope>test</scope> |
| 132 | + <exclusions> |
| 133 | + <exclusion> |
| 134 | + <artifactId>apiguardian-api</artifactId> |
| 135 | + <groupId>org.apiguardian</groupId> |
| 136 | + </exclusion> |
| 137 | + </exclusions> |
| 138 | + </dependency> |
| 139 | + <dependency> |
| 140 | + <groupId>org.assertj</groupId> |
| 141 | + <artifactId>assertj-core</artifactId> |
| 142 | + <version>3.24.2</version> |
| 143 | + <scope>test</scope> |
| 144 | + </dependency> |
| 145 | + </dependencies> |
68 | 146 | <properties> |
69 | | - <maven.compiler.target>11</maven.compiler.target> |
70 | | - <maven.compiler.source>11</maven.compiler.source> |
| 147 | + <main.basedir>${project.parent.parent.basedir}</main.basedir> |
71 | 148 | </properties> |
72 | 149 | </project> |
0 commit comments