Ads API Client Library.
Java client library for accessing ads APIs including AdWords, DFA, and DFP. If you want to use this library, you must also include another Maven artifact to specify which framework you would like to use it with. For example, to use AdWords with Axis, you should include the "adwords-axis....
Here is the list of declaration for ads-lib. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>com.google.api-ads</groupId> <artifactId>ads-lib</artifactId> <version>1.0.0</version> </dependency>
If you think this Maven repository POM file listing for ads-lib is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Apache License.
The ads-lib-1.0.0 has 13 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Data Structure | commons-configuration 1.6 Tools to assist in the reading of configuration/preferences files in various formats | 156 |
Parser | opencsv 1.8 opencsv is a very simple csv (comma-separated values) parser library for Java. It was developed because all of current csv parsers I've come across don't have commercial-friendly licenses. | 49 |
Development | reflections 0.9.5 Reflections - a Java runtime metadata analysis | 24 |
Log | slf4j-api 1.6.1 The slf4j API | 621 |
JUnit | junit 3.8.2 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 555 |
Testing Mock | easymock 3.0 EasyMock provides an easy way to create Mock Objects for interfaces and classes generating them on the fly | 132 |
Data Structure | commons-discovery 0.4 Commons Discovery | 299 |
XML | jaxrpc-api 1.1 Part of the Java Web Services Developer Pack 1.6 | 147 |
Web Service | axis 1.4 POM was created from deploy:deploy-file | 98 |
Web Service | wsdl4j 1.6.2 Java stub generator for WSDL | 159 |
The following packages are defined in the ads-lib-1.0.0.jar
com.google.api.ads.adwords.lib com.google.api.ads.adwords.lib.client com.google.api.ads.adwords.lib.conf com.google.api.ads.adwords.lib.factory com.google.api.ads.adwords.lib.factory.helper com.google.api.ads.adwords.lib.utils com.google.api.ads.common.lib com.google.api.ads.common.lib.auth com.google.api.ads.common.lib.client com.google.api.ads.common.lib.conf com.google.api.ads.common.lib.exception com.google.api.ads.common.lib.factory com.google.api.ads.common.lib.factory.helper com.google.api.ads.common.lib.soap com.google.api.ads.common.lib.soap.compatability com.google.api.ads.common.lib.utils com.google.api.ads.common.lib.utils.logging com.google.api.ads.dfa.lib com.google.api.ads.dfa.lib.auth com.google.api.ads.dfa.lib.client com.google.api.ads.dfa.lib.conf com.google.api.ads.dfa.lib.factory com.google.api.ads.dfa.lib.factory.helper com.google.api.ads.dfp.lib com.google.api.ads.dfp.lib.client com.google.api.ads.dfp.lib.conf com.google.api.ads.dfp.lib.factory com.google.api.ads.dfp.lib.factory.helper com.google.api.ads.dfp.lib.utils
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <!-- * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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. --> <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"> <parent> <groupId>com.google.api-ads</groupId> <artifactId>client-libs-parent</artifactId> <version>1.0.0</version> <relativePath>../../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <groupId>com.google.api-ads</groupId> <artifactId>ads-lib</artifactId> <version>1.0.0</version> <packaging>jar</packaging> <name>Ads API Client Library</name> <description> Java client library for accessing ads APIs including AdWords, DFA, and DFP. If you want to use this library, you must also include another Maven artifact to specify which framework you would like to use it with. For example, to use AdWords with Axis, you should include the "adwords-axis" artifact. </description> <build> <resources> <resource> <targetPath>com/google/api/ads/adwords/lib/conf/props</targetPath> <filtering>false</filtering> <directory>src/main/java/com/google/api/ads/adwords/lib/conf/props</directory> <includes> <include>*.properties</include> </includes> </resource> <resource> <targetPath>com/google/api/ads/dfa/lib/conf/props</targetPath> <filtering>false</filtering> <directory>src/main/java/com/google/api/ads/dfa/lib/conf/props</directory> <includes> <include>*.properties</include> </includes> </resource> <resource> <targetPath>com/google/api/ads/dfp/lib/conf/props</targetPath> <filtering>false</filtering> <directory>src/main/java/com/google/api/ads/dfp/lib/conf/props</directory> <includes> <include>*.properties</include> </includes> </resource> <resource> <targetPath>com/google/api/ads/common/lib/conf/props</targetPath> <filtering>false</filtering> <directory>src/main/java/com/google/api/ads/common/lib/conf/props</directory> <includes> <include>*.properties</include> </includes> </resource> </resources> <testResources> <testResource> <directory>src/main/resources</directory> </testResource> </testResources> </build> <dependencies> <!-- Third party dependencies --> <dependency> <groupId>com.google.api.client</groupId> <artifactId>google-api-client</artifactId> <version>RELEASE</version> </dependency> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> <version>3.0</version> </dependency> <dependency> <groupId>com.google.inject.extensions</groupId> <artifactId>guice-assistedinject</artifactId> <version>3.0</version> </dependency> <dependency> <groupId>commons-configuration</groupId> <artifactId>commons-configuration</artifactId> <version>1.6</version> </dependency> <dependency> <groupId>net.sf.opencsv</groupId> <artifactId>opencsv</artifactId> <version>1.8</version> </dependency> <dependency> <groupId>org.reflections</groupId> <artifactId>reflections</artifactId> <version>0.9.5</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.6.1</version> </dependency> <!-- Testing dependencies --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.easymock</groupId> <artifactId>easymock</artifactId> <version>3.0</version> <scope>test</scope> </dependency> <!-- Axis dependencies by DFA tests. To be removed once tests go into dfa-axis --> <dependency> <groupId>commons-discovery</groupId> <artifactId>commons-discovery</artifactId> <version>0.4</version> <scope>test</scope> </dependency> <dependency> <groupId>javax.xml</groupId> <artifactId>jaxrpc-api</artifactId> <version>1.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.axis</groupId> <artifactId>axis</artifactId> <version>1.4</version> <scope>test</scope> </dependency> <dependency> <groupId>wsdl4j</groupId> <artifactId>wsdl4j</artifactId> <version>1.6.2</version> <scope>test</scope> </dependency> </dependencies> </project>