Skip to content

Commit

Permalink
Version 3.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
gondor committed May 13, 2016
1 parent 040dacb commit a12c377
Show file tree
Hide file tree
Showing 16 changed files with 44 additions and 38 deletions.
44 changes: 22 additions & 22 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
OpenStack4j
OpenStack4j
===========

[![Build Status](https://travis-ci.org/gondor/openstack4j.svg?branch=master)](https://travis-ci.org/gondor/openstack4j) [![License](https://img.shields.io/badge/license-Apache%202-blue.svg)]()
Expand Down Expand Up @@ -34,7 +34,7 @@ OpenStack4j version 2.0.0+ is now modular. One of the benefits to this is the a
<dependency>
<groupId>org.pacesys</groupId>
<artifactId>openstack4j</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0</version>
</dependency>
```

Expand All @@ -50,7 +50,7 @@ See notes above about connectors (same rules apply) to development branches.
<dependency>
<groupId>org.pacesys</groupId>
<artifactId>openstack4j</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.1-SNAPSHOT</version>
</dependency>
```

Expand Down Expand Up @@ -78,20 +78,20 @@ If you would like to contribute please see our contributing [guidelines](https:/
| Rank | Login | Contributions |
| :--- | :---- | :------------ |
| 1 | @gondor | 527 |
| 2 | @octupszhang | 26 |
| 3 | @gonzolino | 18 |
| 4 | @ekasitk | 17 |
| 5 | @magixyu | 17 |
| 6 | @maxrome | 12 |
| 7 | @isartcanyameres | 9 |
| 8 | @iviireczech | 8 |
| 9 | @n-r-anderson | 7 |
| 10 | @krishnabrucelee | 6 |
| 11 | @auhlig | 6 |
| 2 | @auhlig | 57 |
| 3 | @octupszhang | 26 |
| 4 | @gonzolino | 18 |
| 5 | @ekasitk | 17 |
| 6 | @magixyu | 17 |
| 7 | @maxrome | 12 |
| 8 | @isartcanyameres | 9 |
| 9 | @iviireczech | 8 |
| 10 | @n-r-anderson | 7 |
| 11 | @krishnabrucelee | 6 |
| 12 | @peter-nordquist | 4 |
| 13 | @RibeiroAna | 4 |
| 14 | @symcssn | 4 |
| 15 | @olivergondza | 3 |
| 15 | @olivergondza | 5 |

#### Throughput

Expand Down Expand Up @@ -123,9 +123,9 @@ OSClientV2 os = OSFactory.builderV2()
##### Using Identity V3 authentication

Creating and authenticating against OpenStack is extremely simple. Below is an example of authenticating which will
result with the authorized OSClient. OSClient allows you to invoke Compute, Identity, Neutron operations fluently.
result with the authorized OSClient. OSClient allows you to invoke Compute, Identity, Neutron operations fluently.

You can use either pass the users name or id and password in the following way
You can use either pass the users name or id and password in the following way
```java
.credentials("username", "secret", Identifier.byId("domain id"))
```
Expand Down Expand Up @@ -260,7 +260,7 @@ OpenStack4j covers most the major common compute based operations. With the sim
// Create a Flavor for a special customer base
Flavor flavor = os.compute().flavors()
.create(Builders.flavor().name("Gold").vcpus(4).disk(80).ram(2048).build());
// Create and Boot a new Server (minimal builder options shown in example)
Server server = os.compute().servers()
.boot(Builders.server().name("Ubuntu 2").flavor(flavor.getId()).image("imageId").build());
Expand Down Expand Up @@ -312,13 +312,13 @@ Subnet subnet = os.networking().subnet().create(Builders.subnet()
**Router Operations**
```java
// List all Routers
// List all Routers
List<? extends Router> = os.networking().router().list();
// Create a Router
Router router = os.networking().router().create(Builders.router()
.name("ext_net").adminStateUp(true).externalGateway("networkId").build());
```
### Image Operations (Glance)
Expand All @@ -343,7 +343,7 @@ os.images().update(image.toBuilder()
**Download the Image Data**
```java
InputStream is = os.images().getAsStream("imageId");
InputStream is = os.images().getAsStream("imageId");
```
**Create a Image**
Expand All @@ -363,7 +363,7 @@ License
```
This software is licensed under the Apache 2 license, quoted below.

Copyright 2016 Jeremy Unruh and OpenStack4j
Copyright 2016 ContainX and OpenStack4j

Licensed 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
Expand All @@ -376,4 +376,4 @@ 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.
```
```
2 changes: 1 addition & 1 deletion connectors/http-connector/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.pacesys.openstack4j.connectors</groupId>
<artifactId>openstack4j-connectors</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0</version>
</parent>
<name>OpenStack4j HttpURL Connector</name>
<artifactId>openstack4j-http-connector</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion connectors/httpclient/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<parent>
<groupId>org.pacesys.openstack4j.connectors</groupId>
<artifactId>openstack4j-connectors</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>openstack4j-httpclient</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion connectors/jersey2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<parent>
<groupId>org.pacesys.openstack4j.connectors</groupId>
<artifactId>openstack4j-connectors</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>openstack4j-jersey2</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion connectors/okhttp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<parent>
<groupId>org.pacesys.openstack4j.connectors</groupId>
<artifactId>openstack4j-connectors</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>openstack4j-okhttp</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion connectors/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<parent>
<groupId>org.pacesys</groupId>
<artifactId>openstack4j-parent</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.pacesys.openstack4j.connectors</groupId>
Expand Down
2 changes: 1 addition & 1 deletion connectors/resteasy/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<parent>
<groupId>org.pacesys.openstack4j.connectors</groupId>
<artifactId>openstack4j-connectors</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>openstack4j-resteasy</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion core-integration-test/it-httpclient/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.pacesys</groupId>
<artifactId>openstack4j-core-integration-test</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0</version>
</parent>
<artifactId>it-httpclient</artifactId>
<name>OpenStack4j IntegrationTest Apache HttpClient</name>
Expand Down
2 changes: 1 addition & 1 deletion core-integration-test/it-jersey2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.pacesys</groupId>
<artifactId>openstack4j-core-integration-test</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0</version>
</parent>
<artifactId>it-jersey2</artifactId>
<name>OpenStack4j IntegrationTest Jersey2 Connector</name>
Expand Down
2 changes: 1 addition & 1 deletion core-integration-test/it-okhttp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.pacesys</groupId>
<artifactId>openstack4j-core-integration-test</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0</version>
</parent>
<artifactId>it-okhttp</artifactId>
<name>OpenStack4j IntegrationTest OKHttp Connector</name>
Expand Down
2 changes: 1 addition & 1 deletion core-integration-test/it-resteasy/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.pacesys</groupId>
<artifactId>openstack4j-core-integration-test</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0</version>
</parent>
<artifactId>it-resteasy</artifactId>
<name>OpenStack4j IntegrationTest RestEasy Connector</name>
Expand Down
2 changes: 1 addition & 1 deletion core-integration-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<parent>
<groupId>org.pacesys</groupId>
<artifactId>openstack4j-parent</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>openstack4j-core-integration-test</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion core-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<parent>
<groupId>org.pacesys</groupId>
<artifactId>openstack4j-parent</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>openstack4j-core-test</artifactId>
Expand Down
5 changes: 3 additions & 2 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<parent>
<groupId>org.pacesys</groupId>
<artifactId>openstack4j-parent</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>openstack4j-core</artifactId>
Expand Down Expand Up @@ -195,8 +195,9 @@
<excludePackageNames>*.internal</excludePackageNames>
<reportOutputDirectory>docs</reportOutputDirectory>
<destDir>javadoc</destDir>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</plugin>
</plugins>
</reporting>
</project>
</project>
5 changes: 4 additions & 1 deletion distribution/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<parent>
<groupId>org.pacesys</groupId>
<artifactId>openstack4j-parent</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>openstack4j</artifactId>
Expand Down Expand Up @@ -37,6 +37,9 @@
<goals>
<goal>jar</goal>
</goals>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</execution>
</executions>
</plugin>
Expand Down
4 changes: 3 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.pacesys</groupId>
<artifactId>openstack4j-parent</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0</version>
<name>OpenStack4j Parent</name>
<description>OpenStack Java API</description>
<url>http://github.com/gondor/openstack4j/</url>
Expand All @@ -18,6 +18,7 @@
<aries.spifly.version>1.0.0</aries.spifly.version>
<slf4j.version>1.7.21</slf4j.version>
<jackson.version>2.7.3</jackson.version>
<additionalparam>-Xdoclint:none</additionalparam>
</properties>
<licenses>
<license>
Expand Down Expand Up @@ -234,6 +235,7 @@
<excludePackageNames>*.internal</excludePackageNames>
<reportOutputDirectory>docs</reportOutputDirectory>
<destDir>javadoc</destDir>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</plugin>
</plugins>
Expand Down

0 comments on commit a12c377

Please sign in to comment.