Skip to content

Commit 80beaa3

Browse files
committed
Merge branch 'master' into update-dependencies
2 parents e875fd3 + 8df857b commit 80beaa3

File tree

1 file changed

+46
-51
lines changed

1 file changed

+46
-51
lines changed

pom.xml

100755100644
Lines changed: 46 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -114,26 +114,12 @@
114114
</dependency>
115115

116116
<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>
120120
<scope>test</scope>
121121
</dependency>
122122

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-
137123
<dependency>
138124
<groupId>org.pitest</groupId>
139125
<artifactId>pitest</artifactId>
@@ -148,9 +134,17 @@
148134
<type>test-jar</type>
149135
<scope>test</scope>
150136
</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>
151143
</dependencies>
152144

153145
<build>
146+
147+
154148
<plugins>
155149
<plugin>
156150
<groupId>org.jetbrains.kotlin</groupId>
@@ -178,55 +172,56 @@
178172
</goals>
179173
</execution>
180174
</executions>
175+
<configuration>
176+
<jvmTarget>1.8</jvmTarget>
177+
</configuration>
181178
</plugin>
179+
182180
<plugin>
183181
<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>
186206
</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>-->
216207
<plugin>
217208
<groupId>org.apache.maven.plugins</groupId>
218209
<artifactId>maven-source-plugin</artifactId>
219-
<version>3.2.1</version>
210+
<version>3.0.1</version>
220211
</plugin>
221212
<plugin>
222213
<groupId>org.apache.maven.plugins</groupId>
223214
<artifactId>maven-javadoc-plugin</artifactId>
224-
<version>3.2.0</version>
215+
<version>3.0.0-M1</version>
225216
</plugin>
226217
<plugin>
227218
<groupId>org.apache.maven.plugins</groupId>
228219
<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>
230225
<executions>
231226
<execution>
232227
<id>compile</id>

0 commit comments

Comments
 (0)