Vantiv / cnp-sdk-for-java

Java SDK to ease XML integrations with the Vantiv eCommerce platform
https://vantiv.github.io
MIT License
4 stars 25 forks source link

README mvn/gradle dependency groupId is wrong 'com.litle' vs 'com.cnp' #3

Closed johntowell closed 6 years ago

johntowell commented 6 years ago
     <dependency>
        <groupId>com.litle</groupId>
        <artifactId>cnp-sdk-for-java</artifactId>
        <version>12.0.0</version>
     </dependency>

should be

        <dependency>
            <groupId>com.cnp</groupId>
            <artifactId>cnp-sdk-for-java</artifactId>
            <version>12.0.3</version>
        </dependency>
harshitvora commented 6 years ago

Thank you for pointing it out!

johntowell commented 6 years ago

No problem. The gradle one is still wrong though. compile(group: 'com.litle', name: 'cnp-sdk-for-java', version: '12.0.0') also the example code has some litle remnants in it as well

import com.cnp.sdk.generated.*

public class SampleCnpTxn {

import com.litle.sdk.*;
import com.litle.sdk.generated.*;
public class SampleLitleTxn {
harshitvora commented 6 years ago

Thank you, I overlooked it.