Skip to content

Commit f10fa96

Browse files
adding gcloud-java-contrib module
1 parent c5bae84 commit f10fa96

3 files changed

Lines changed: 99 additions & 0 deletions

File tree

gcloud-java-contrib/README.md

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
Google Cloud Java Contributions
2+
===============================
3+
4+
Packages that provide higher-level abstraction/functionality for common gcloud-java use cases.
5+
6+
[//]: # (commented out because there isn't any code yet, so this won't work)
7+
[//]: #
8+
[//]: # (Quickstart)
9+
[//]: # (----------)
10+
[//]: # (If you are using Maven, add this to your pom.xml file)
11+
[//]: # (```xml)
12+
[//]: # (<dependency>)
13+
[//]: # ( <groupId>com.google.gcloud</groupId>)
14+
[//]: # ( <artifactId>gcloud-java-contrib</artifactId>)
15+
[//]: # ( <version>0.1.2</version>)
16+
[//]: # (</dependency>)
17+
[//]: # (```)
18+
[//]: # (If you are using Gradle, add this to your dependencies)
19+
[//]: # (```Groovy)
20+
[//]: # (compile 'com.google.gcloud:gcloud-java-contrib:0.1.2')
21+
[//]: # (```)
22+
[//]: # (If you are using SBT, add this to your dependencies)
23+
[//]: # (```Scala)
24+
[//]: # (libraryDependencies += "com.google.gcloud" % "gcloud-java-contrib" % "0.1.2")
25+
[//]: # (```)
26+
27+
28+
Java Versions
29+
-------------
30+
31+
Java 7 or above is required for using this client.
32+
33+
Versioning
34+
----------
35+
36+
This library follows [Semantic Versioning] (http://semver.org/).
37+
38+
It is currently in major version zero (``0.y.z``), which means that anything
39+
may change at any time and the public API should not be considered
40+
stable.
41+
42+
Contributing
43+
------------
44+
45+
Contributions to this library are always welcome and highly encouraged.
46+
47+
See `gcloud-java`'s [CONTRIBUTING] documentation and the `gcloud-*` [shared documentation](https://github.com/GoogleCloudPlatform/gcloud-common/blob/master/contributing/readme.md#how-to-contribute-to-gcloud) for more information on how to get started.
48+
49+
Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms. See [Code of Conduct][code-of-conduct] for more information.
50+
51+
License
52+
-------
53+
54+
Apache 2.0 - See [LICENSE] for more information.
55+
56+
57+
[CONTRIBUTING]:https://github.com/GoogleCloudPlatform/gcloud-java/blob/master/CONTRIBUTING.md
58+
[code-of-conduct]:https://github.com/GoogleCloudPlatform/gcloud-java/blob/master/CODE_OF_CONDUCT.md#contributor-code-of-conduct
59+
[LICENSE]: https://github.com/GoogleCloudPlatform/gcloud-java/blob/master/LICENSE
60+
[cloud-platform]: https://cloud.google.com/
61+
[developers-console]:https://console.developers.google.com/

gcloud-java-contrib/pom.xml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<?xml version="1.0"?>
2+
<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">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>com.google.gcloud</groupId>
5+
<artifactId>gcloud-java-contrib</artifactId>
6+
<packaging>jar</packaging>
7+
<name>GCloud Java contributions</name>
8+
<description>
9+
Contains packages that provide higher-level abstraction/functionality for common gcloud-java use cases.
10+
</description>
11+
<parent>
12+
<groupId>com.google.gcloud</groupId>
13+
<artifactId>gcloud-java-pom</artifactId>
14+
<version>0.1.3-SNAPSHOT</version>
15+
</parent>
16+
<properties>
17+
<site.installationModule>gcloud-java-contrib</site.installationModule>
18+
</properties>
19+
<dependencies>
20+
<dependency>
21+
<groupId>${project.groupId}</groupId>
22+
<artifactId>gcloud-java</artifactId>
23+
<version>${project.version}</version>
24+
</dependency>
25+
</dependencies>
26+
<build>
27+
<plugins>
28+
<plugin>
29+
<groupId>org.codehaus.mojo</groupId>
30+
<artifactId>exec-maven-plugin</artifactId>
31+
<configuration>
32+
<skip>false</skip>
33+
</configuration>
34+
</plugin>
35+
</plugins>
36+
</build>
37+
</project>

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@
6868
<modules>
6969
<module>gcloud-java</module>
7070
<module>gcloud-java-bigquery</module>
71+
<module>gcloud-java-contrib</module>
7172
<module>gcloud-java-core</module>
7273
<module>gcloud-java-datastore</module>
7374
<module>gcloud-java-examples</module>

0 commit comments

Comments
 (0)