Skip to content

Rename maven artifact to 'com.ibm.cloud:sdk-core' #4

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 20, 2019
Merged
Show file tree
Hide file tree
Changes from all 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
18 changes: 9 additions & 9 deletions build/bintray-config.template
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"package": {
"vcs_url": "https://github.com/IBM/java-sdk-core.git",
"repo": "sdk-maven-repo",
"repo": "ibm-cloud-sdk-repo",
"issue_tracker_url": "https://github.com/IBM/java-sdk-core/issues",
"subject": "padamstx",
"website_url": "https://github.com/IBM/java-sdk-core",
"name": "com.ibm.cloud.sdk:java-sdk-core"
"name": "com.ibm.cloud:sdk-core"
},

"version": {
Expand All @@ -14,20 +14,20 @@

"files": [
{
"includePattern": "target/java-sdk-core-${TRAVIS_TAG}.jar",
"uploadPattern": "com/ibm/cloud/sdk/java-sdk-core/${TRAVIS_TAG}/java-sdk-core-${TRAVIS_TAG}.jar"
"includePattern": "target/sdk-core-${TRAVIS_TAG}.jar",
"uploadPattern": "com/ibm/cloud/sdk-core/${TRAVIS_TAG}/sdk-core-${TRAVIS_TAG}.jar"
},
{
"includePattern": "target/java-sdk-core-${TRAVIS_TAG}-sources.jar",
"uploadPattern": "com/ibm/cloud/sdk/java-sdk-core/${TRAVIS_TAG}/java-sdk-core-${TRAVIS_TAG}-sources.jar"
"includePattern": "target/sdk-core-${TRAVIS_TAG}-sources.jar",
"uploadPattern": "com/ibm/cloud/sdk-core/${TRAVIS_TAG}/sdk-core-${TRAVIS_TAG}-sources.jar"
},
{
"includePattern": "target/java-sdk-core-${TRAVIS_TAG}-javadoc.jar",
"uploadPattern": "com/ibm/cloud/sdk/java-sdk-core/${TRAVIS_TAG}/java-sdk-core-${TRAVIS_TAG}-javadoc.jar"
"includePattern": "target/sdk-core-${TRAVIS_TAG}-javadoc.jar",
"uploadPattern": "com/ibm/cloud/sdk-core/${TRAVIS_TAG}/sdk-core-${TRAVIS_TAG}-javadoc.jar"
},
{
"includePattern": "pom.xml",
"uploadPattern": "com/ibm/cloud/sdk/java-sdk-core/${TRAVIS_TAG}/java-sdk-core-${TRAVIS_TAG}.pom"
"uploadPattern": "com/ibm/cloud/sdk-core/${TRAVIS_TAG}/sdk-core-${TRAVIS_TAG}.pom"
}
],

Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.ibm.cloud.sdk</groupId>
<artifactId>java-sdk-core</artifactId>
<groupId>com.ibm.cloud</groupId>
<artifactId>sdk-core</artifactId>
<packaging>jar</packaging>
<name>java-sdk-core</name>
<version>1.0-SNAPSHOT</version>
<name>sdk-core</name>
<version>99-SNAPSHOT</version>
Copy link
Contributor

Choose a reason for hiding this comment

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

This doesn't really matter since you set it in the Travis script, right?

Copy link
Member Author

Choose a reason for hiding this comment

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

correct, 99-SNAPSHOT would just be the default artifact version # for a non-tagged build

<description>Core functionality required by code generated by the IBM OpenAPI SDK Generator</description>
<url>https://github.com/IBM/java-sdk-core</url>

Expand Down