|
77 | 77 | <dependency> |
78 | 78 | <groupId>org.projectlombok</groupId> |
79 | 79 | <artifactId>lombok</artifactId> |
80 | | - <optional>true</optional> |
| 80 | + <scope>provided</scope> |
81 | 81 | </dependency> |
82 | 82 | <dependency> |
83 | 83 | <groupId>org.springframework.boot</groupId> |
|
89 | 89 | <artifactId>spring-security-test</artifactId> |
90 | 90 | <scope>test</scope> |
91 | 91 | </dependency> |
92 | | - <dependency> |
93 | | - <groupId>io.cucumber</groupId> |
94 | | - <artifactId>cucumber-junit</artifactId> |
95 | | - <version>7.19.0</version> |
96 | | - <scope>test</scope> |
97 | | - </dependency> |
| 92 | + <dependency> |
| 93 | + <groupId>io.cucumber</groupId> |
| 94 | + <artifactId>cucumber-junit-platform-engine</artifactId> |
| 95 | + <version>7.19.0</version> |
| 96 | + <scope>test</scope> |
| 97 | + </dependency> |
98 | 98 | <dependency> |
99 | 99 | <groupId>io.cucumber</groupId> |
100 | 100 | <artifactId>cucumber-java</artifactId> |
|
107 | 107 | <version>7.19.0</version> |
108 | 108 | <scope>test</scope> |
109 | 109 | </dependency> |
110 | | - <dependency> |
111 | | - <groupId>org.junit.vintage</groupId> |
112 | | - <artifactId>junit-vintage-engine</artifactId> |
113 | | - <scope>test</scope> |
114 | | - <exclusions> |
115 | | - <exclusion> |
116 | | - <groupId>org.hamcrest</groupId> |
117 | | - <artifactId>hamcrest-core</artifactId> |
118 | | - </exclusion> |
119 | | - </exclusions> |
120 | | - </dependency> |
121 | 110 | </dependencies> |
122 | 111 |
|
123 | 112 | <build> |
124 | 113 | <plugins> |
125 | 114 | <plugin> |
126 | 115 | <groupId>org.springframework.boot</groupId> |
127 | 116 | <artifactId>spring-boot-maven-plugin</artifactId> |
128 | | - <configuration> |
129 | | - <excludes> |
130 | | - <exclude> |
131 | | - <groupId>org.projectlombok</groupId> |
132 | | - <artifactId>lombok</artifactId> |
133 | | - </exclude> |
134 | | - </excludes> |
135 | | - </configuration> |
136 | 117 | </plugin> |
| 118 | + <plugin> |
| 119 | + <groupId>org.apache.maven.plugins</groupId> |
| 120 | + <artifactId>maven-surefire-plugin</artifactId> |
| 121 | + <version>3.2.5</version> |
| 122 | + <configuration> |
| 123 | + <useModulePath>false</useModulePath> |
| 124 | + </configuration> |
| 125 | + </plugin> |
| 126 | + <plugin> |
| 127 | + <groupId>org.apache.maven.plugins</groupId> |
| 128 | + <artifactId>maven-compiler-plugin</artifactId> |
| 129 | + <version>3.14.0</version> |
| 130 | + <configuration> |
| 131 | + <annotationProcessorPaths> |
| 132 | + <path> |
| 133 | + <groupId>org.projectlombok</groupId> |
| 134 | + <artifactId>lombok</artifactId> |
| 135 | + <version>1.18.34</version> |
| 136 | + </path> |
| 137 | + </annotationProcessorPaths> |
| 138 | + </configuration> |
| 139 | + </plugin> |
137 | 140 | </plugins> |
138 | 141 | </build> |
139 | 142 |
|
|
0 commit comments