Skip to content

Commit 6054c58

Browse files
committed
Configure build process with respect to hh nexus repository
1 parent 1b490b2 commit 6054c58

File tree

18 files changed

+47
-29
lines changed

18 files changed

+47
-29
lines changed

.github/project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
name: SmallRye OpenAPI
22
release:
33
current-version: 3.6.0
4-
next-version: 3.6.1-SNAPSHOT
4+
next-version: 3.6.1-VB-SNAPSHOT

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.smallrye</groupId>
77
<artifactId>smallrye-open-api-parent</artifactId>
8-
<version>3.6.1-SNAPSHOT</version>
8+
<version>3.6.1-VB-SNAPSHOT</version>
99
</parent>
1010

1111
<artifactId>smallrye-open-api-core</artifactId>

extension-jaxrs/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.smallrye</groupId>
77
<artifactId>smallrye-open-api-parent</artifactId>
8-
<version>3.6.1-SNAPSHOT</version>
8+
<version>3.6.1-VB-SNAPSHOT</version>
99
</parent>
1010

1111
<artifactId>smallrye-open-api-jaxrs</artifactId>

extension-spring/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.smallrye</groupId>
77
<artifactId>smallrye-open-api-parent</artifactId>
8-
<version>3.6.1-SNAPSHOT</version>
8+
<version>3.6.1-VB-SNAPSHOT</version>
99
</parent>
1010

1111
<artifactId>smallrye-open-api-spring</artifactId>

extension-vertx/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.smallrye</groupId>
77
<artifactId>smallrye-open-api-parent</artifactId>
8-
<version>3.6.1-SNAPSHOT</version>
8+
<version>3.6.1-VB-SNAPSHOT</version>
99
</parent>
1010

1111
<artifactId>smallrye-open-api-vertx</artifactId>

implementation/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.smallrye</groupId>
77
<artifactId>smallrye-open-api-parent</artifactId>
8-
<version>3.6.1-SNAPSHOT</version>
8+
<version>3.6.1-VB-SNAPSHOT</version>
99
</parent>
1010

1111
<artifactId>smallrye-open-api</artifactId>

pom.xml

Lines changed: 30 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</parent>
1111

1212
<artifactId>smallrye-open-api-parent</artifactId>
13-
<version>3.6.1-SNAPSHOT</version>
13+
<version>3.6.1-VB-SNAPSHOT</version>
1414

1515
<packaging>pom</packaging>
1616
<name>SmallRye: OpenAPI Parent</name>
@@ -50,13 +50,13 @@
5050

5151
<issueManagement>
5252
<system>GitHub</system>
53-
<url>https://github.com/smallrye/smallrye-open-api/issues</url>
53+
<url>https://github.com/vbazhmin/smallrye-open-api/issues</url>
5454
</issueManagement>
5555

5656
<scm>
57-
<connection>scm:git:git@github.com:smallrye/smallrye-open-api.git</connection>
58-
<developerConnection>scm:git:git@github.com:smallrye/smallrye-open-api.git</developerConnection>
59-
<url>https://github.com/smallrye/smallrye-open-api/</url>
57+
<connection>scm:git:git@github.com:vbazhmin/smallrye-open-api.git</connection>
58+
<developerConnection>scm:git:git@github.com:vbazhmin/smallrye-open-api.git</developerConnection>
59+
<url>https://github.com/vbazhmin/smallrye-open-api/</url>
6060
<tag>HEAD</tag>
6161
</scm>
6262

@@ -71,17 +71,25 @@
7171
<module>tools</module>
7272
</modules>
7373

74+
<distributionManagement>
75+
<snapshotRepository>
76+
<id>hh-snapshots</id>
77+
<url>https://m2.hh.ru/content/repositories/snapshots/</url>
78+
</snapshotRepository>
79+
</distributionManagement>
80+
7481
<repositories>
7582
<repository>
76-
<id>ossrh</id>
77-
<name>Sonatype OSSRH Snapshots</name>
78-
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
83+
<id>hh-snapshots</id>
84+
<name>hh public snapshots repository</name>
85+
<url>https://m2.hh.ru/content/repositories/snapshots</url>
7986
<releases>
80-
<enabled>false</enabled>
87+
<enabled>false</enabled>
88+
<checksumPolicy>fail</checksumPolicy>
8189
</releases>
8290
<snapshots>
83-
<enabled>true</enabled>
84-
</snapshots>
91+
<enabled>true</enabled>
92+
</snapshots>
8593
</repository>
8694
</repositories>
8795

@@ -344,6 +352,16 @@
344352
<pluginManagement>
345353
<plugins>
346354
<plugin>
355+
<groupId>org.sonatype.plugins</groupId>
356+
<artifactId>nexus-staging-maven-plugin</artifactId>
357+
<extensions>true</extensions>
358+
<configuration>
359+
<nexusUrl>https://m2.hh.ru/</nexusUrl>
360+
<serverId>hh</serverId>
361+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
362+
</configuration>
363+
</plugin>
364+
<!--<plugin>
347365
<groupId>org.asciidoctor</groupId>
348366
<artifactId>asciidoctor-maven-plugin</artifactId>
349367
<configuration>
@@ -360,7 +378,7 @@
360378
<organization>${project.organization.name}</organization>
361379
</attributes>
362380
</configuration>
363-
</plugin>
381+
</plugin>-->
364382
<plugin>
365383
<groupId>org.codehaus.mojo</groupId>
366384
<artifactId>build-helper-maven-plugin</artifactId>

release/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.smallrye</groupId>
77
<artifactId>smallrye-open-api-parent</artifactId>
8-
<version>3.6.1-SNAPSHOT</version>
8+
<version>3.6.1-VB-SNAPSHOT</version>
99
</parent>
1010

1111
<artifactId>smallrye-open-api-release</artifactId>

testsuite/data/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</parent>
1010

1111
<artifactId>smallrye-open-api-testsuite-data</artifactId>
12-
<version>3.6.1-SNAPSHOT</version>
12+
<version>3.6.1-VB-SNAPSHOT</version>
1313
<name>SmallRye: OpenAPI Test Data</name>
1414

1515
<properties>

testsuite/extra/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>io.smallrye</groupId>
55
<artifactId>smallrye-open-api-testsuite</artifactId>
6-
<version>3.6.1-SNAPSHOT</version>
6+
<version>3.6.1-VB-SNAPSHOT</version>
77
<relativePath>../</relativePath>
88
</parent>
99

0 commit comments

Comments
 (0)