Skip to content

Commit f0e6fd7

Browse files
committed
ci: allow very long closing of staging repo
1 parent 5aa8aa0 commit f0e6fd7

File tree

5 files changed

+400
-332
lines changed

5 files changed

+400
-332
lines changed

dummy/pom.xml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<parent>
6+
<artifactId>kotlin-spark-api-parent</artifactId>
7+
<groupId>org.jetbrains.kotlinx.spark</groupId>
8+
<version>1.0.0-preview2-SNAPSHOT</version>
9+
</parent>
10+
<packaging>pom</packaging>
11+
<modelVersion>4.0.0</modelVersion>
12+
<name>Kotlin API for Apache Spark: not-needed</name>
13+
<description>Module to workaround https://issues.sonatype.org/browse/NEXUS-9138</description>
14+
<artifactId>dummy</artifactId>
15+
<dependencies>
16+
<dependency>
17+
<groupId>org.jetbrains.kotlinx.spark</groupId>
18+
<artifactId>examples-2.4_2.11</artifactId>
19+
<version>${project.parent.version}</version>
20+
</dependency>
21+
<dependency>
22+
<groupId>org.jetbrains.kotlinx.spark</groupId>
23+
<artifactId>examples-2.4_2.12</artifactId>
24+
<version>${project.parent.version}</version>
25+
</dependency>
26+
<dependency>
27+
<groupId>org.jetbrains.kotlinx.spark</groupId>
28+
<artifactId>examples-3.0_2.12</artifactId>
29+
<version>${project.parent.version}</version>
30+
</dependency>
31+
</dependencies>
32+
33+
</project>

examples/pom-2.4_2.11.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,13 @@
6464
<skip>true</skip>
6565
</configuration>
6666
</plugin>
67+
<plugin>
68+
<groupId>org.sonatype.plugins</groupId>
69+
<artifactId>nexus-staging-maven-plugin</artifactId>
70+
<configuration>
71+
<skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
72+
</configuration>
73+
</plugin>
6774
</plugins>
6875
</build>
6976
</project>

examples/pom-2.4_2.12.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,13 @@
6363
<skip>true</skip>
6464
</configuration>
6565
</plugin>
66+
<plugin>
67+
<groupId>org.sonatype.plugins</groupId>
68+
<artifactId>nexus-staging-maven-plugin</artifactId>
69+
<configuration>
70+
<skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
71+
</configuration>
72+
</plugin>
6673
</plugins>
6774
</build>
6875
</project>

examples/pom-3.0_2.12.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,13 @@
6464
<skip>true</skip>
6565
</configuration>
6666
</plugin>
67+
<plugin>
68+
<groupId>org.sonatype.plugins</groupId>
69+
<artifactId>nexus-staging-maven-plugin</artifactId>
70+
<configuration>
71+
<skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
72+
</configuration>
73+
</plugin>
6774
</plugins>
6875
</build>
6976
</project>

0 commit comments

Comments
 (0)