|
114 | 114 | </dependency> |
115 | 115 |
|
116 | 116 | <dependency> |
117 | | - <groupId>org.jetbrains.kotlin</groupId> |
118 | | - <artifactId>kotlin-test-junit5</artifactId> |
119 | | - <version>${kotlin.version}</version> |
| 117 | + <groupId>junit</groupId> |
| 118 | + <artifactId>junit</artifactId> |
| 119 | + <version>${junit.version}</version> |
120 | 120 | <scope>test</scope> |
121 | 121 | </dependency> |
122 | 122 |
|
123 | | - <dependency> |
124 | | - <groupId>org.junit.jupiter</groupId> |
125 | | - <artifactId>junit-jupiter-api</artifactId> |
126 | | - <version>${junit-jupiter.version}</version> |
127 | | - <scope>test</scope> |
128 | | - </dependency> |
129 | | - <dependency> |
130 | | - <groupId>org.junit.jupiter</groupId> |
131 | | - <artifactId>junit-jupiter-engine</artifactId> |
132 | | - <version>${junit-jupiter.version}</version> |
133 | | - <scope>test</scope> |
134 | | - </dependency> |
135 | | - |
136 | | - |
137 | 123 | <dependency> |
138 | 124 | <groupId>org.pitest</groupId> |
139 | 125 | <artifactId>pitest</artifactId> |
|
148 | 134 | <type>test-jar</type> |
149 | 135 | <scope>test</scope> |
150 | 136 | </dependency> |
| 137 | + <dependency> |
| 138 | + <groupId>org.jetbrains.kotlin</groupId> |
| 139 | + <artifactId>kotlin-test-junit</artifactId> |
| 140 | + <version>${kotlin.version}</version> |
| 141 | + <scope>test</scope> |
| 142 | + </dependency> |
151 | 143 | </dependencies> |
152 | 144 |
|
153 | 145 | <build> |
| 146 | + |
| 147 | + |
154 | 148 | <plugins> |
155 | 149 | <plugin> |
156 | 150 | <groupId>org.jetbrains.kotlin</groupId> |
|
178 | 172 | </goals> |
179 | 173 | </execution> |
180 | 174 | </executions> |
| 175 | + <configuration> |
| 176 | + <jvmTarget>1.8</jvmTarget> |
| 177 | + </configuration> |
181 | 178 | </plugin> |
| 179 | + |
182 | 180 | <plugin> |
183 | 181 | <groupId>org.apache.maven.plugins</groupId> |
184 | | - <artifactId>maven-surefire-plugin</artifactId> |
185 | | - <version>2.22.2</version> |
| 182 | + <artifactId>maven-jar-plugin</artifactId> |
| 183 | + <version>3.0.2</version> |
| 184 | + <configuration> |
| 185 | + <archive> |
| 186 | + <manifest> |
| 187 | + <addDefaultImplementationEntries>true</addDefaultImplementationEntries> |
| 188 | + </manifest> |
| 189 | + <manifestEntries> |
| 190 | + <Implementation-Vendor>${project.groupId}</Implementation-Vendor> |
| 191 | + <Implementation-Title>${project.artifactId}</Implementation-Title> |
| 192 | + </manifestEntries> |
| 193 | + </archive> |
| 194 | + </configuration> |
| 195 | + </plugin> |
| 196 | + <plugin> |
| 197 | + <artifactId>maven-release-plugin</artifactId> |
| 198 | + <version>2.4.2</version> |
| 199 | + <dependencies> |
| 200 | + <dependency> |
| 201 | + <groupId>org.apache.maven.scm</groupId> |
| 202 | + <artifactId>maven-scm-provider-gitexe</artifactId> |
| 203 | + <version>1.9.4</version> |
| 204 | + </dependency> |
| 205 | + </dependencies> |
186 | 206 | </plugin> |
187 | | - |
188 | | - |
189 | | -<!-- <plugin>--> |
190 | | -<!-- <groupId>org.apache.maven.plugins</groupId>--> |
191 | | -<!-- <artifactId>maven-jar-plugin</artifactId>--> |
192 | | -<!-- <version>3.2.0</version>--> |
193 | | -<!-- <configuration>--> |
194 | | -<!-- <archive>--> |
195 | | -<!-- <manifest>--> |
196 | | -<!-- <addDefaultImplementationEntries>true</addDefaultImplementationEntries>--> |
197 | | -<!-- </manifest>--> |
198 | | -<!-- <manifestEntries>--> |
199 | | -<!-- <Implementation-Vendor>${project.groupId}</Implementation-Vendor>--> |
200 | | -<!-- <Implementation-Title>${project.artifactId}</Implementation-Title>--> |
201 | | -<!-- </manifestEntries>--> |
202 | | -<!-- </archive>--> |
203 | | -<!-- </configuration>--> |
204 | | -<!-- </plugin>--> |
205 | | -<!-- <plugin>--> |
206 | | -<!-- <artifactId>maven-release-plugin</artifactId>--> |
207 | | -<!-- <version>2.5.3</version>--> |
208 | | -<!-- <dependencies>--> |
209 | | -<!-- <dependency>--> |
210 | | -<!-- <groupId>org.apache.maven.scm</groupId>--> |
211 | | -<!-- <artifactId>maven-scm-provider-gitexe</artifactId>--> |
212 | | -<!-- <version>1.11.2</version>--> |
213 | | -<!-- </dependency>--> |
214 | | -<!-- </dependencies>--> |
215 | | -<!-- </plugin>--> |
216 | 207 | <plugin> |
217 | 208 | <groupId>org.apache.maven.plugins</groupId> |
218 | 209 | <artifactId>maven-source-plugin</artifactId> |
219 | | - <version>3.2.1</version> |
| 210 | + <version>3.0.1</version> |
220 | 211 | </plugin> |
221 | 212 | <plugin> |
222 | 213 | <groupId>org.apache.maven.plugins</groupId> |
223 | 214 | <artifactId>maven-javadoc-plugin</artifactId> |
224 | | - <version>3.2.0</version> |
| 215 | + <version>3.0.0-M1</version> |
225 | 216 | </plugin> |
226 | 217 | <plugin> |
227 | 218 | <groupId>org.apache.maven.plugins</groupId> |
228 | 219 | <artifactId>maven-compiler-plugin</artifactId> |
229 | | - <version>3.8.1</version> |
| 220 | + <version>3.8.0</version> |
| 221 | + <configuration> |
| 222 | + <source>1.8</source> |
| 223 | + <target>1.8</target> |
| 224 | + </configuration> |
230 | 225 | <executions> |
231 | 226 | <execution> |
232 | 227 | <id>compile</id> |
|
0 commit comments