You can download anet-java-sdk-1.8.1.jar in this page.
SDK License Agreement
anet-java-sdk-1.8.1.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/net.authorize/anet-java-sdk/pom.properties META-INF/maven/net.authorize/anet-java-sdk/pom.xml log4j.properties net.authorize.AuthNetField.class net.authorize.DeviceType.class net.authorize.Environment.class net.authorize.MarketType.class net.authorize.Merchant.class net.authorize.PaymentMethod.class net.authorize.ResponseCode.class net.authorize.ResponseField.class net.authorize.ResponseReasonCode.class net.authorize.Result.class net.authorize.Transaction.class net.authorize.TransactionType.class net.authorize.aim.Result.class net.authorize.aim.Transaction.class net.authorize.aim.cardpresent.PrepaidCard.class net.authorize.aim.cardpresent.Result.class net.authorize.arb.Result.class net.authorize.arb.Transaction.class net.authorize.arb.TransactionType.class net.authorize.cim.Result.class net.authorize.cim.SplitTenderStatus.class net.authorize.cim.Transaction.class net.authorize.cim.TransactionType.class net.authorize.cim.ValidationModeType.class net.authorize.data.Address.class net.authorize.data.Customer.class net.authorize.data.EmailReceipt.class net.authorize.data.Order.class net.authorize.data.OrderItem.class net.authorize.data.ShippingAddress.class net.authorize.data.ShippingCharges.class net.authorize.data.arb.PaymentSchedule.class net.authorize.data.arb.Subscription.class net.authorize.data.arb.SubscriptionStatusType.class net.authorize.data.arb.SubscriptionUnitType.class net.authorize.data.cim.CustomerProfile.class net.authorize.data.cim.DirectResponse.class net.authorize.data.cim.PaymentProfile.class net.authorize.data.cim.PaymentTransaction.class net.authorize.data.creditcard.AVSCode.class net.authorize.data.creditcard.CardType.class net.authorize.data.creditcard.CreditCard.class net.authorize.data.echeck.BankAccountType.class net.authorize.data.echeck.ECheck.class net.authorize.data.echeck.ECheckType.class net.authorize.data.echeck.NOCCode.class net.authorize.data.echeck.ReturnCode.class net.authorize.data.reporting.ReturnedItem.class net.authorize.data.reporting.Solution.class net.authorize.data.reporting.Subscription.class net.authorize.data.xml.Address.class net.authorize.data.xml.BankAccount.class net.authorize.data.xml.Customer.class net.authorize.data.xml.CustomerType.class net.authorize.data.xml.DriversLicense.class net.authorize.data.xml.Payment.class net.authorize.data.xml.reporting.BatchDetails.class net.authorize.data.xml.reporting.BatchStatistics.class net.authorize.data.xml.reporting.CAVVResponseType.class net.authorize.data.xml.reporting.CardCodeResponseType.class net.authorize.data.xml.reporting.FDSFilter.class net.authorize.data.xml.reporting.FDSFilterActionType.class net.authorize.data.xml.reporting.ReportingDetails.class net.authorize.data.xml.reporting.ReportingTransactionType.class net.authorize.data.xml.reporting.SettlementStateType.class net.authorize.data.xml.reporting.TransactionDetails.class net.authorize.data.xml.reporting.TransactionStatusType.class net.authorize.reporting.Result.class net.authorize.reporting.Transaction.class net.authorize.reporting.TransactionType.class net.authorize.sim.Fingerprint.class net.authorize.sim.LinkMethod.class net.authorize.sim.Result.class net.authorize.sim.Transaction.class net.authorize.sim.button.Button.class net.authorize.sim.button.ButtonType.class net.authorize.sim.button.ImageButton.class net.authorize.sim.button.TextButton.class net.authorize.sim.data.HostedPaymentFormSettings.class net.authorize.sim.data.HostedReceiptPageSettings.class net.authorize.util.BasicXmlDocument.class net.authorize.util.Constants.class net.authorize.util.DateUtil.class net.authorize.util.DeepCopy.class net.authorize.util.HttpClient.class net.authorize.util.LogHelper.class net.authorize.util.Luhn.class net.authorize.util.ResponseParser.class net.authorize.util.StringUtils.class net.authorize.util.XmlTreeUtil.class net.authorize.util.XmlUtility.class net.authorize.xml.Message.class net.authorize.xml.Result.class
anet-java-sdk-1.8.1.pom file content.
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <groupId>net.authorize</groupId> <artifactId>anet-java-sdk</artifactId> <packaging>jar</packaging> <version>1.8.1</version> <name>Authorize.Net Java SDK</name> <description>Authorize.Net SDK includes standard payments, recurring billing, and customer profiles.</description> <url>http://developer.authorize.net</url> <licenses> <license> <name>SDK License Agreement</name> <url>https://github.com/AuthorizeNet/sdk-java/blob/master/license.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:https://github.com/AuthorizeNet/sdk-java.git</connection> <developerConnection>scm:git:https://github.com/AuthorizeNet/sdk-java.git</developerConnection> <url>https://github.com/AuthorizeNet/sdk-java.git</url> </scm> <developers> <developer> <id>authorizenet</id> <name>Authorize.Net Developer</name> <email>developer@authorize.net</email> </developer> </developers> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.1</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.1.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.0.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpcore</artifactId> <version>4.0.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.16</version> <scope>compile</scope> </dependency> </dependencies> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <maven.compile.source>1.5</maven.compile.source> <maven.compile.target>1.5</maven.compile.target> <maven.compile.optimize>true</maven.compile.optimize> <maven.compile.deprecation>true</maven.compile.deprecation> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.0.2</version> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>properties-maven-plugin</artifactId> <version>1.0-alpha-2</version> <executions> <execution> <phase>initialize</phase> <goals> <goal>read-project-properties</goal> </goals> <configuration> <files> <file>${user.home}/anet-java-sdk.properties</file> </files> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.7.2</version> <configuration> <skipTests>true</skipTests> <forkMode>never</forkMode> <systemPropertyVariables> <API_LOGIN_ID>${api.login.id}</API_LOGIN_ID> <TRANSACTION_KEY>${transaction.key}</TRANSACTION_KEY> <CP_API_LOGIN_ID>${cp.api.login.id}</CP_API_LOGIN_ID> <CP_TRANSACTION_KEY>${cp.transaction.key}</CP_TRANSACTION_KEY> <MD5_HASH_KEY>${md5.hash.key}</MD5_HASH_KEY> </systemPropertyVariables> </configuration> </plugin> </plugins> <resources> <resource> <directory>resources</directory> <filtering>false</filtering> <includes> <include>*</include> </includes> </resource> </resources> </build> </project>
<dependency> <groupId>net.authorize</groupId> <artifactId>anet-java-sdk</artifactId> <version>1.8.1</version> </dependency>
If you think the following anet-java-sdk-1.8.1.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download anet-java-sdk-1.8.1.jar file