Skip to content
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
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ This project hosts the Java client library for the Google Ads API.
* `google-ads-examples`: multiple examples that demonstrate how to use
the library to execute common use cases via the Google Ads API.

3. To run examples, you'll need to compile the `google-ads-examples` code.
3. To run examples, you'll need to compile the `google-ads` and
`google-ads-examples` code.

**If you are using an IDE...**

Expand All @@ -47,6 +48,11 @@ This project hosts the Java client library for the Google Ads API.

**If you are using Maven from the command line...**

* From the `google-ads-java` directory, install the snapshot version
of the library.

mvn install

* Change into the `google-ads-examples` directory.

cd google-ads-examples
Expand Down
6 changes: 3 additions & 3 deletions google-ads-examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@
<parent>
<groupId>com.google.api-ads</groupId>
<artifactId>google-ads-parent</artifactId>
<version>0.3.1-SNAPSHOT</version>
<version>0.3.2-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<modelVersion>4.0.0</modelVersion>
<groupId>com.google.api-ads</groupId>
<artifactId>google-ads-examples</artifactId>
<packaging>jar</packaging>
<version>0.3.1-SNAPSHOT</version>
<version>0.3.2-SNAPSHOT</version>
<name>Google Ads API client library for Java examples</name>
<description>
Examples demonstrating the Google Ads API client library for Java.
Expand All @@ -55,7 +55,7 @@
<dependency>
<groupId>com.google.api-ads</groupId>
<artifactId>google-ads</artifactId>
<version>0.3.1-SNAPSHOT</version>
<version>0.3.2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.beust</groupId>
Expand Down