Skip to content

Commit da94c48

Browse files
fix: [DevOps] Snapshot release (#892)
1 parent 1619378 commit da94c48

File tree

4 files changed

+19
-2
lines changed

4 files changed

+19
-2
lines changed

.github/workflows/deploy-snapshot.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ jobs:
99
deploy-snapshot:
1010
name: Deploy Snapshot
1111
runs-on: ubuntu-latest
12-
timeout-minutes: 15
1312
steps:
1413
- name: "Checkout Repository"
1514
uses: actions/checkout@v5

dependency-bundles/bom/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@
3131
<id>central</id>
3232
<url>https://central.sonatype.com/api/v1/publisher/upload</url>
3333
</repository>
34+
<snapshotRepository>
35+
<id>artifactory-snapshots</id>
36+
<url>https://common.repositories.cloud.sap/artifactory/build-snapshots-cloudsdk</url>
37+
</snapshotRepository>
3438
</distributionManagement>
3539
<scm>
3640
<connection>scm:git:git://github.com/SAP/cloud-sdk-java.git</connection>

dependency-bundles/modules-bom/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@
3131
<id>central</id>
3232
<url>https://central.sonatype.com/api/v1/publisher/upload</url>
3333
</repository>
34+
<snapshotRepository>
35+
<id>artifactory-snapshots</id>
36+
<url>https://common.repositories.cloud.sap/artifactory/build-snapshots-cloudsdk</url>
37+
</snapshotRepository>
3438
</distributionManagement>
3539
<scm>
3640
<connection>scm:git:git://github.com/SAP/cloud-sdk-java.git</connection>

pom.xml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,12 @@
4141
<developerConnection>scm:git:ssh://github.com:SAP/cloud-sdk-java.git</developerConnection>
4242
<url>https://github.com/SAP/cloud-sdk-java/tree/main</url>
4343
</scm>
44+
<distributionManagement>
45+
<snapshotRepository>
46+
<id>artifactory-snapshots</id>
47+
<url>https://common.repositories.cloud.sap/artifactory/build-snapshots-cloudsdk</url>
48+
</snapshotRepository>
49+
</distributionManagement>
4450
<properties>
4551
<!-- do not modify the following line, it is updated by the versioning script -->
4652
<sdk.version>5.22.0-SNAPSHOT</sdk.version>
@@ -481,6 +487,11 @@
481487
<artifactId>maven-plugin-plugin</artifactId>
482488
<version>3.15.1</version>
483489
</plugin>
490+
<plugin>
491+
<groupId>org.apache.maven.plugins</groupId>
492+
<artifactId>maven-javadoc-plugin</artifactId>
493+
<version>3.11.2</version>
494+
</plugin>
484495
<plugin>
485496
<groupId>com.sap.cloud.sdk.datamodel</groupId>
486497
<artifactId>openapi-generator-maven-plugin</artifactId>
@@ -958,7 +969,6 @@
958969
<plugin>
959970
<groupId>org.apache.maven.plugins</groupId>
960971
<artifactId>maven-javadoc-plugin</artifactId>
961-
<version>3.11.2</version>
962972
<configuration>
963973
<quiet>true</quiet>
964974
<doclint>none</doclint>

0 commit comments

Comments
 (0)