|
7 | 7 | <parent> |
8 | 8 | <groupId>software.xdev</groupId> |
9 | 9 | <artifactId>spring-data-eclipse-store-root</artifactId> |
10 | | - <version>1.0.9-SNAPSHOT</version> |
| 10 | + <version>1.0.10-SNAPSHOT</version> |
11 | 11 | </parent> |
12 | 12 |
|
13 | 13 | <artifactId>spring-data-eclipse-store-demo</artifactId> |
14 | | - <version>1.0.9-SNAPSHOT</version> |
| 14 | + <version>1.0.10-SNAPSHOT</version> |
15 | 15 | <packaging>jar</packaging> |
16 | 16 |
|
17 | 17 | <organization> |
|
62 | 62 | <groupId>org.springframework.boot</groupId> |
63 | 63 | <artifactId>spring-boot-autoconfigure</artifactId> |
64 | 64 | </dependency> |
| 65 | + |
| 66 | + |
| 67 | + <dependency> |
| 68 | + <groupId>org.junit.jupiter</groupId> |
| 69 | + <artifactId>junit-jupiter</artifactId> |
| 70 | + <scope>test</scope> |
| 71 | + </dependency> |
| 72 | + <dependency> |
| 73 | + <groupId>org.junit.jupiter</groupId> |
| 74 | + <artifactId>junit-jupiter</artifactId> |
| 75 | + <scope>test</scope> |
| 76 | + </dependency> |
| 77 | + <dependency> |
| 78 | + <groupId>org.junit.jupiter</groupId> |
| 79 | + <artifactId>junit-jupiter</artifactId> |
| 80 | + <scope>test</scope> |
| 81 | + </dependency> |
| 82 | + <dependency> |
| 83 | + <groupId>org.springframework.boot</groupId> |
| 84 | + <artifactId>spring-boot-starter-test</artifactId> |
| 85 | + <exclusions> |
| 86 | + <exclusion> |
| 87 | + <artifactId>spring-boot-starter-logging</artifactId> |
| 88 | + <groupId>org.springframework.boot</groupId> |
| 89 | + </exclusion> |
| 90 | + </exclusions> |
| 91 | + <scope>test</scope> |
| 92 | + </dependency> |
65 | 93 | </dependencies> |
66 | 94 |
|
67 | 95 | <build> |
|
88 | 116 | <jvmArguments> |
89 | 117 | --add-opens java.base/java.util=ALL-UNNAMED |
90 | 118 | --add-opens java.base/java.time=ALL-UNNAMED |
| 119 | + --add-exports java.base/jdk.internal.misc=ALL-UNNAMED |
91 | 120 | </jvmArguments> |
92 | 121 | </configuration> |
93 | 122 | </plugin> |
| 123 | + <plugin> |
| 124 | + <groupId>org.apache.maven.plugins</groupId> |
| 125 | + <artifactId>maven-surefire-plugin</artifactId> |
| 126 | + <version>3.3.0</version> |
| 127 | + <configuration> |
| 128 | + <argLine> |
| 129 | + --add-opens java.base/java.util=ALL-UNNAMED |
| 130 | + --add-opens java.base/java.time=ALL-UNNAMED |
| 131 | + --add-exports java.base/jdk.internal.misc=ALL-UNNAMED |
| 132 | + </argLine> |
| 133 | + </configuration> |
| 134 | + </plugin> |
94 | 135 | </plugins> |
95 | 136 | </build> |
96 | 137 | </project> |
0 commit comments