Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions dependency-bundles/bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@
<id>central</id>
<url>https://central.sonatype.com/api/v1/publisher/upload</url>
</repository>
<snapshotRepository>
<id>artifactory-snapshots</id>
<url>https://common.repositories.cloud.sap/artifactory/build-snapshots-cloudsdk</url>
</snapshotRepository>
</distributionManagement>
<scm>
<connection>scm:git:git://github.com/SAP/cloud-sdk-java.git</connection>
Expand Down
4 changes: 4 additions & 0 deletions dependency-bundles/modules-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@
<id>central</id>
<url>https://central.sonatype.com/api/v1/publisher/upload</url>
</repository>
<snapshotRepository>
<id>artifactory-snapshots</id>
<url>https://common.repositories.cloud.sap/artifactory/build-snapshots-cloudsdk</url>
</snapshotRepository>
</distributionManagement>
<scm>
<connection>scm:git:git://github.com/SAP/cloud-sdk-java.git</connection>
Expand Down
12 changes: 11 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,12 @@
<developerConnection>scm:git:ssh://github.com:SAP/cloud-sdk-java.git</developerConnection>
<url>https://github.com/SAP/cloud-sdk-java/tree/main</url>
</scm>
<distributionManagement>
<snapshotRepository>
<id>artifactory-snapshots</id>
<url>https://common.repositories.cloud.sap/artifactory/build-snapshots-cloudsdk</url>
</snapshotRepository>
</distributionManagement>
<properties>
<!-- do not modify the following line, it is updated by the versioning script -->
<sdk.version>5.22.0-SNAPSHOT</sdk.version>
Expand Down Expand Up @@ -481,6 +487,11 @@
<artifactId>maven-plugin-plugin</artifactId>
<version>3.15.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.11.2</version>
</plugin>
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

drive-by fix, the version is now inherited by children poms

<plugin>
<groupId>com.sap.cloud.sdk.datamodel</groupId>
<artifactId>openapi-generator-maven-plugin</artifactId>
Expand Down Expand Up @@ -958,7 +969,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.11.2</version>
<configuration>
<quiet>true</quiet>
<doclint>none</doclint>
Expand Down
Loading