Skip to content

Commit

Permalink
chore: 🤖 Changes to correspond to maven central requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
asm0dey committed Aug 13, 2020
1 parent 4f68c18 commit c312bf1
Show file tree
Hide file tree
Showing 5 changed files with 61 additions and 49 deletions.
8 changes: 8 additions & 0 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
<version>4.4.0</version>
<executions>
<execution>
<id>compile</id>
<goals>
<goal>compile</goal>
<goal>testCompile</goal>
Expand All @@ -52,6 +53,13 @@
</args>
</configuration>
</execution>
<execution>
<id>docjar</id>
<goals>
<goal>doc-jar</goal>
</goals>
<phase>pre-integration-test</phase>
</execution>
</executions>
</plugin>
<plugin>
Expand Down
9 changes: 8 additions & 1 deletion examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,14 @@
<skip>true</skip>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>

Expand Down
32 changes: 31 additions & 1 deletion kotlin-spark-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,9 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M5</version>
<configuration>
<enableProcessChecker>native</enableProcessChecker>
</configuration>
</plugin>
<plugin>
<groupId>org.jetbrains.dokka</groupId>
Expand All @@ -131,11 +134,19 @@
</configuration>
<executions>
<execution>
<id>dokka</id>
<goals>
<goal>javadocJar</goal>
<goal>dokka</goal>
</goals>
<phase>pre-site</phase>
</execution>
<execution>
<id>javadocjar</id>
<goals>
<goal>javadocJar</goal>
</goals>
<phase>pre-integration-test</phase>
</execution>
</executions>
</plugin>
<plugin>
Expand All @@ -146,6 +157,25 @@
<resultsDirectory>${project.basedir}/allure-results</resultsDirectory>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.5</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>prepare-package</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<repositories>
Expand Down

This file was deleted.

14 changes: 14 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,20 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<url>http://maven.apache.org</url>
Expand Down

0 comments on commit c312bf1

Please sign in to comment.