Skip to content

Commit bb48276

Browse files
salaboycicoyle
andauthored
Cherry-picking timeout and nexus URL from release 1.14 to master (#1257)
* fixing argument order for deploy profile option (#1250) Signed-off-by: salaboy <[email protected]> * up build timeout (#1256) Signed-off-by: Cassandra Coyle <[email protected]> Signed-off-by: salaboy <[email protected]> * Setting nexus URL (#1254) * adding nexus url Signed-off-by: salaboy <[email protected]> * removing duplicate dep Signed-off-by: salaboy <[email protected]> * adding missing version, which is not needed but to avoid warn Signed-off-by: salaboy <[email protected]> --------- Signed-off-by: salaboy <[email protected]> --------- Signed-off-by: salaboy <[email protected]> Signed-off-by: Cassandra Coyle <[email protected]> Co-authored-by: Cassie Coyle <[email protected]>
1 parent 18a036c commit bb48276

File tree

3 files changed

+7
-12
lines changed

3 files changed

+7
-12
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ jobs:
146146
publish:
147147
runs-on: ubuntu-latest
148148
needs: build
149-
timeout-minutes: 10
149+
timeout-minutes: 30
150150
env:
151151
JDK_VER: 17
152152
OSSRH_USER_TOKEN: ${{ secrets.OSSRH_USER_TOKEN }}

pom.xml

+5-11
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,11 @@
168168
<artifactId>nexus-staging-maven-plugin</artifactId>
169169
<version>${nexus-staging-maven-plugin.version}</version>
170170
<extensions>true</extensions>
171+
<configuration>
172+
<serverId>ossrh</serverId>
173+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
174+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
175+
</configuration>
171176
</plugin>
172177
</plugins>
173178
</pluginManagement>
@@ -210,17 +215,6 @@
210215
</execution>
211216
</executions>
212217
</plugin>
213-
<plugin>
214-
<groupId>org.sonatype.plugins</groupId>
215-
<artifactId>nexus-staging-maven-plugin</artifactId>
216-
<version>1.6.13</version>
217-
<extensions>true</extensions>
218-
<configuration>
219-
<serverId>ossrh</serverId>
220-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
221-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
222-
</configuration>
223-
</plugin>
224218
<plugin>
225219
<groupId>org.apache.maven.plugins</groupId>
226220
<artifactId>maven-checkstyle-plugin</artifactId>

spring-boot-examples/consumer-app/pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@
8383
<plugin>
8484
<groupId>org.springframework.boot</groupId>
8585
<artifactId>spring-boot-maven-plugin</artifactId>
86+
<version>${springboot.version}</version>
8687
</plugin>
8788
<plugin>
8889
<groupId>org.apache.maven.plugins</groupId>

0 commit comments

Comments
 (0)