Skip to content
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

Feature #26

Merged
merged 2 commits into from
Feb 28, 2024
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
46 changes: 42 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ XI Sdk Resellers
For Resellers. Who are looking to Innovate with Ingram Micro's API SolutionsAutomate your eCommerce with our offering of APIs and Webhooks to create a seamless experience for your customers.


*Automatically generated by the [OpenAPI Generator](https://openapi-generator.tech)*


## Requirements

Expand All @@ -18,7 +16,47 @@ Building the API client library requires:

## Installation

To install the API client library to your local Maven repository, simply execute:
To install the API client library to your local Maven repository:
In settings.xml in your machine add :
```xml

<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
http://maven.apache.org/xsd/settings-1.0.0.xsd">

<activeProfiles>
<activeProfile>github</activeProfile>
</activeProfiles>

<profiles>
<profile>
<id>github</id>
<repositories>
<repository>
<id>central</id>
<url>https://repo1.maven.org/maven2</url>
</repository>
<repository>
<id>github</id>
<url>https://maven.pkg.github.com/ingrammicro-xvantage/xi-sdk-resellers-java</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
</profile>
</profiles>

<servers>
<server>
<id>github</id>
<username>youruserid</username> ///Replace with your user id
<password>accesstoken</password> /// Get access token from developer settings in your profile.
</server>
</servers>
</settings>
```

```shell
mvn clean install
Expand Down Expand Up @@ -356,4 +394,4 @@ It's recommended to create an instance of `ApiClient` per thread in a multithrea

For any inquiries or support, please feel free to contact us at:

- Email: [[email protected]]([email protected])
- Email: [[email protected]]([email protected])
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>xi.sdk.resellers</artifactId>
<packaging>jar</packaging>
<name>xi.sdk.resellers</name>
<version>0.0.1</version>
<version>1.0.0</version>
<url>https://github.com/ingrammicro-xvantage/xi-sdk-resellers-java</url>
<distributionManagement>
<repository>
Expand Down
Loading