Amazon MWS(Marketplace Web Service) Fulfillment Inbound Shipment Java Library - Version 2010-10-01._CB277140933
The project is mavenised unofficial copy of Java library provided by Amazon for dealing with Amazon Marketplace Web Service API.
-
https://developer.amazonservices.com/doc/fulfillment/inbound/v20101001/java.html/133-9591009-4758051
-
http://docs.developer.amazonservices.com/en_US/fba_inbound/FBAInbound_Overview.html
Current CI status: https://travis-ci.org/trifonnt/ext-lib-amazon-mws-fulfillment-inbound-shipment
Based on the 2010-10-01 API version. Refers only to the MWSFulfillmentInboundShipmentJavaClientLibrary-2010-10-01.CB277140933.zip file.
-
Amazon Pro Merchant seller account or another Amazon account that makes you eligible to use Amazon Marketplace Web Service (Amazon MWS). For more information, see the Amazon MWS FAQ.
-
Registering for Amazon MWS. For more information see the Amazon MWS FAQ.
-
Java Platform Standard Edition 6.0 Development Kit (JDK 1.6.0_19) or newer. If your version of the JDK is older than 6.0, you must install the newer version. For more information, go to the Java SE Downloads page.
$ mvn archetype:create \
-DarchetypeGroupId=org.apache.maven.archetypes \
-DgroupId=com.github.trifonnt \
-DartifactId=ext-lib-amazon-mws-fulfillment-inbound-shipment \
-DpackageName=com.amazonservices.mws.FulfillmentInboundShipment._2010_10_01
$ git clone https://github.com/trifonnt/ext-lib-amazon-mws-fulfillment-inbound-shipment.git
$ cd ext-lib-amazon-mws-fulfillment-inbound-shipment
$ mkdir orig-library
$ cd orig-library
$ wget https://images-na.ssl-images-amazon.com/images/G/01/mwsportal/clientlib/fba-inbound/MWSFulfillmentInboundShipmentJavaClientLibrary-2010-10-01._CB277140933_.zip
$ unzip MWSFulfillmentInboundShipmentJavaClientLibrary-2010-10-01._CB277140933_.zip
$ mv LICENSE.txt ../
$ mkdir ../src/test/resources/
$ mv src/com/amazonservices/mws/FulfillmentInboundShipment/_2010_10_01/mock/*.xml ../src/test/resources/
$ mkdir ../src/test/java/com/amazonservices/mws/FulfillmentInboundShipment/_2010_10_01/mock/ -p
$ mv src/com/amazonservices/mws/FulfillmentInboundShipment/_2010_10_01/mock/FBAInboundServiceMWSMock.java ../src/test/java/com/amazonservices/mws/FulfillmentInboundShipment/_2010_10_01/mock/
$ rm -r src/com/amazonservices/mws/FulfillmentInboundShipment/_2010_10_01/mock
$ mkdir ../src/test/java/com/amazonservices/mws/FulfillmentInboundShipment/_2010_10_01/samples/
$ mv src/com/amazonservices/mws/FulfillmentInboundShipment/_2010_10_01/samples/*.java ../src/test/java/com/amazonservices/mws/FulfillmentInboundShipment/_2010_10_01/samples/
$ rm -r src/com/amazonservices/mws/FulfillmentInboundShipment/_2010_10_01/samples
$ mkdir ../src/main/java/com/amazonservices/mws/FulfillmentInboundShipment/_2010_10_01/model/ -p
$ mv src/com/amazonservices/mws/FulfillmentInboundShipment/_2010_10_01/*.java ../src/main/java/com/amazonservices/mws/FulfillmentInboundShipment/_2010_10_01/
$ mv src/com/amazonservices/mws/FulfillmentInboundShipment/_2010_10_01/model/*.java ../src/main/java/com/amazonservices/mws/FulfillmentInboundShipment/_2010_10_01/model
$ rm -r src/com/amazonservices/mws/FulfillmentInboundShipment/_2010_10_01/model
$ mvn clean install -Dmaven.javadoc.skip=true
Publishing releases using Github, Bintray and maven-release-plugin
Publishing Your Maven Project to Bintray
$ mvn clean install -Prelease -Dmaven.javadoc.skip=true
$ mvn versions:set
$ mvn deploy
-
Create new Release in GitHub
-
Open below URL in order to start JitPack build process
https://jitpack.io/com/github/trifonnt/ext-lib-amazon-mws-fulfillment-inbound-shipment/1.0.1
...
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
...
...
<dependency>
<groupId>com.github.trifonnt</groupId>
<artifactId>ext-lib-amazon-mws-fulfillment-inbound-shipment</artifactId>
<version>1.0.1</version>
</dependency>
...
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.