Skip to content

Commit c312bf1

Browse files
committed
chore: 🤖 Changes to correspond to maven central requirements
1 parent 4f68c18 commit c312bf1

File tree

5 files changed

+61
-49
lines changed

5 files changed

+61
-49
lines changed

core/pom.xml

+8
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
<version>4.4.0</version>
4242
<executions>
4343
<execution>
44+
<id>compile</id>
4445
<goals>
4546
<goal>compile</goal>
4647
<goal>testCompile</goal>
@@ -52,6 +53,13 @@
5253
</args>
5354
</configuration>
5455
</execution>
56+
<execution>
57+
<id>docjar</id>
58+
<goals>
59+
<goal>doc-jar</goal>
60+
</goals>
61+
<phase>pre-integration-test</phase>
62+
</execution>
5563
</executions>
5664
</plugin>
5765
<plugin>

examples/pom.xml

+8-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,14 @@
8686
<skip>true</skip>
8787
</configuration>
8888
</plugin>
89-
89+
<plugin>
90+
<groupId>org.apache.maven.plugins</groupId>
91+
<artifactId>maven-deploy-plugin</artifactId>
92+
<version>2.8.2</version>
93+
<configuration>
94+
<skip>true</skip>
95+
</configuration>
96+
</plugin>
9097
</plugins>
9198
</build>
9299

kotlin-spark-api/pom.xml

+31-1
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,9 @@
121121
<groupId>org.apache.maven.plugins</groupId>
122122
<artifactId>maven-surefire-plugin</artifactId>
123123
<version>3.0.0-M5</version>
124+
<configuration>
125+
<enableProcessChecker>native</enableProcessChecker>
126+
</configuration>
124127
</plugin>
125128
<plugin>
126129
<groupId>org.jetbrains.dokka</groupId>
@@ -131,11 +134,19 @@
131134
</configuration>
132135
<executions>
133136
<execution>
137+
<id>dokka</id>
134138
<goals>
135-
<goal>javadocJar</goal>
139+
<goal>dokka</goal>
136140
</goals>
137141
<phase>pre-site</phase>
138142
</execution>
143+
<execution>
144+
<id>javadocjar</id>
145+
<goals>
146+
<goal>javadocJar</goal>
147+
</goals>
148+
<phase>pre-integration-test</phase>
149+
</execution>
139150
</executions>
140151
</plugin>
141152
<plugin>
@@ -146,6 +157,25 @@
146157
<resultsDirectory>${project.basedir}/allure-results</resultsDirectory>
147158
</configuration>
148159
</plugin>
160+
<plugin>
161+
<groupId>org.jacoco</groupId>
162+
<artifactId>jacoco-maven-plugin</artifactId>
163+
<version>0.8.5</version>
164+
<executions>
165+
<execution>
166+
<goals>
167+
<goal>prepare-agent</goal>
168+
</goals>
169+
</execution>
170+
<execution>
171+
<id>report</id>
172+
<phase>prepare-package</phase>
173+
<goals>
174+
<goal>report</goal>
175+
</goals>
176+
</execution>
177+
</executions>
178+
</plugin>
149179
</plugins>
150180
</build>
151181
<repositories>

kotlin-spark-api/src/test/kotlin/org/jetbrains/spark/api/KotlinSparkTest.kt

-47
This file was deleted.

pom.xml

+14
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,20 @@
6060
</execution>
6161
</executions>
6262
</plugin>
63+
<plugin>
64+
<groupId>org.apache.maven.plugins</groupId>
65+
<artifactId>maven-gpg-plugin</artifactId>
66+
<version>1.5</version>
67+
<executions>
68+
<execution>
69+
<id>sign-artifacts</id>
70+
<phase>verify</phase>
71+
<goals>
72+
<goal>sign</goal>
73+
</goals>
74+
</execution>
75+
</executions>
76+
</plugin>
6377
</plugins>
6478
</build>
6579
<url>http://maven.apache.org</url>

0 commit comments

Comments
 (0)