Skip to content

Commit a12c377

Browse files
committed
Version 3.0.0 release
1 parent 040dacb commit a12c377

File tree

16 files changed

+44
-38
lines changed

16 files changed

+44
-38
lines changed

README.md

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
OpenStack4j
1+
OpenStack4j
22
===========
33

44
[![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)]()
@@ -34,7 +34,7 @@ OpenStack4j version 2.0.0+ is now modular. One of the benefits to this is the a
3434
<dependency>
3535
<groupId>org.pacesys</groupId>
3636
<artifactId>openstack4j</artifactId>
37-
<version>3.0.0-SNAPSHOT</version>
37+
<version>3.0.0</version>
3838
</dependency>
3939
```
4040

@@ -50,7 +50,7 @@ See notes above about connectors (same rules apply) to development branches.
5050
<dependency>
5151
<groupId>org.pacesys</groupId>
5252
<artifactId>openstack4j</artifactId>
53-
<version>3.0.0-SNAPSHOT</version>
53+
<version>3.0.1-SNAPSHOT</version>
5454
</dependency>
5555
```
5656

@@ -78,20 +78,20 @@ If you would like to contribute please see our contributing [guidelines](https:/
7878
| Rank | Login | Contributions |
7979
| :--- | :---- | :------------ |
8080
| 1 | @gondor | 527 |
81-
| 2 | @octupszhang | 26 |
82-
| 3 | @gonzolino | 18 |
83-
| 4 | @ekasitk | 17 |
84-
| 5 | @magixyu | 17 |
85-
| 6 | @maxrome | 12 |
86-
| 7 | @isartcanyameres | 9 |
87-
| 8 | @iviireczech | 8 |
88-
| 9 | @n-r-anderson | 7 |
89-
| 10 | @krishnabrucelee | 6 |
90-
| 11 | @auhlig | 6 |
81+
| 2 | @auhlig | 57 |
82+
| 3 | @octupszhang | 26 |
83+
| 4 | @gonzolino | 18 |
84+
| 5 | @ekasitk | 17 |
85+
| 6 | @magixyu | 17 |
86+
| 7 | @maxrome | 12 |
87+
| 8 | @isartcanyameres | 9 |
88+
| 9 | @iviireczech | 8 |
89+
| 10 | @n-r-anderson | 7 |
90+
| 11 | @krishnabrucelee | 6 |
9191
| 12 | @peter-nordquist | 4 |
9292
| 13 | @RibeiroAna | 4 |
9393
| 14 | @symcssn | 4 |
94-
| 15 | @olivergondza | 3 |
94+
| 15 | @olivergondza | 5 |
9595

9696
#### Throughput
9797

@@ -123,9 +123,9 @@ OSClientV2 os = OSFactory.builderV2()
123123
##### Using Identity V3 authentication
124124

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

128-
You can use either pass the users name or id and password in the following way
128+
You can use either pass the users name or id and password in the following way
129129
```java
130130
.credentials("username", "secret", Identifier.byId("domain id"))
131131
```
@@ -260,7 +260,7 @@ OpenStack4j covers most the major common compute based operations. With the sim
260260
// Create a Flavor for a special customer base
261261
Flavor flavor = os.compute().flavors()
262262
.create(Builders.flavor().name("Gold").vcpus(4).disk(80).ram(2048).build());
263-
263+
264264
// Create and Boot a new Server (minimal builder options shown in example)
265265
Server server = os.compute().servers()
266266
.boot(Builders.server().name("Ubuntu 2").flavor(flavor.getId()).image("imageId").build());
@@ -312,13 +312,13 @@ Subnet subnet = os.networking().subnet().create(Builders.subnet()
312312
313313
**Router Operations**
314314
```java
315-
// List all Routers
315+
// List all Routers
316316
List<? extends Router> = os.networking().router().list();
317317
318318
// Create a Router
319319
Router router = os.networking().router().create(Builders.router()
320320
.name("ext_net").adminStateUp(true).externalGateway("networkId").build());
321-
321+
322322
```
323323
324324
### Image Operations (Glance)
@@ -343,7 +343,7 @@ os.images().update(image.toBuilder()
343343
344344
**Download the Image Data**
345345
```java
346-
InputStream is = os.images().getAsStream("imageId");
346+
InputStream is = os.images().getAsStream("imageId");
347347
```
348348
349349
**Create a Image**
@@ -363,7 +363,7 @@ License
363363
```
364364
This software is licensed under the Apache 2 license, quoted below.
365365

366-
Copyright 2016 Jeremy Unruh and OpenStack4j
366+
Copyright 2016 ContainX and OpenStack4j
367367

368368
Licensed under the Apache License, Version 2.0 (the "License"); you may not
369369
use this file except in compliance with the License. You may obtain a copy of
@@ -376,4 +376,4 @@ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
376376
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
377377
License for the specific language governing permissions and limitations under
378378
the License.
379-
```
379+
```

connectors/http-connector/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.pacesys.openstack4j.connectors</groupId>
66
<artifactId>openstack4j-connectors</artifactId>
7-
<version>3.0.0-SNAPSHOT</version>
7+
<version>3.0.0</version>
88
</parent>
99
<name>OpenStack4j HttpURL Connector</name>
1010
<artifactId>openstack4j-http-connector</artifactId>

connectors/httpclient/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<parent>
33
<groupId>org.pacesys.openstack4j.connectors</groupId>
44
<artifactId>openstack4j-connectors</artifactId>
5-
<version>3.0.0-SNAPSHOT</version>
5+
<version>3.0.0</version>
66
</parent>
77
<modelVersion>4.0.0</modelVersion>
88
<artifactId>openstack4j-httpclient</artifactId>

connectors/jersey2/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<parent>
33
<groupId>org.pacesys.openstack4j.connectors</groupId>
44
<artifactId>openstack4j-connectors</artifactId>
5-
<version>3.0.0-SNAPSHOT</version>
5+
<version>3.0.0</version>
66
</parent>
77
<modelVersion>4.0.0</modelVersion>
88
<artifactId>openstack4j-jersey2</artifactId>

connectors/okhttp/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<parent>
33
<groupId>org.pacesys.openstack4j.connectors</groupId>
44
<artifactId>openstack4j-connectors</artifactId>
5-
<version>3.0.0-SNAPSHOT</version>
5+
<version>3.0.0</version>
66
</parent>
77
<modelVersion>4.0.0</modelVersion>
88
<artifactId>openstack4j-okhttp</artifactId>

connectors/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<parent>
33
<groupId>org.pacesys</groupId>
44
<artifactId>openstack4j-parent</artifactId>
5-
<version>3.0.0-SNAPSHOT</version>
5+
<version>3.0.0</version>
66
</parent>
77
<modelVersion>4.0.0</modelVersion>
88
<groupId>org.pacesys.openstack4j.connectors</groupId>

connectors/resteasy/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<parent>
33
<groupId>org.pacesys.openstack4j.connectors</groupId>
44
<artifactId>openstack4j-connectors</artifactId>
5-
<version>3.0.0-SNAPSHOT</version>
5+
<version>3.0.0</version>
66
</parent>
77
<modelVersion>4.0.0</modelVersion>
88
<artifactId>openstack4j-resteasy</artifactId>

core-integration-test/it-httpclient/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.pacesys</groupId>
66
<artifactId>openstack4j-core-integration-test</artifactId>
7-
<version>3.0.0-SNAPSHOT</version>
7+
<version>3.0.0</version>
88
</parent>
99
<artifactId>it-httpclient</artifactId>
1010
<name>OpenStack4j IntegrationTest Apache HttpClient</name>

core-integration-test/it-jersey2/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.pacesys</groupId>
66
<artifactId>openstack4j-core-integration-test</artifactId>
7-
<version>3.0.0-SNAPSHOT</version>
7+
<version>3.0.0</version>
88
</parent>
99
<artifactId>it-jersey2</artifactId>
1010
<name>OpenStack4j IntegrationTest Jersey2 Connector</name>

core-integration-test/it-okhttp/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.pacesys</groupId>
66
<artifactId>openstack4j-core-integration-test</artifactId>
7-
<version>3.0.0-SNAPSHOT</version>
7+
<version>3.0.0</version>
88
</parent>
99
<artifactId>it-okhttp</artifactId>
1010
<name>OpenStack4j IntegrationTest OKHttp Connector</name>

core-integration-test/it-resteasy/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.pacesys</groupId>
66
<artifactId>openstack4j-core-integration-test</artifactId>
7-
<version>3.0.0-SNAPSHOT</version>
7+
<version>3.0.0</version>
88
</parent>
99
<artifactId>it-resteasy</artifactId>
1010
<name>OpenStack4j IntegrationTest RestEasy Connector</name>

core-integration-test/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<parent>
33
<groupId>org.pacesys</groupId>
44
<artifactId>openstack4j-parent</artifactId>
5-
<version>3.0.0-SNAPSHOT</version>
5+
<version>3.0.0</version>
66
</parent>
77
<modelVersion>4.0.0</modelVersion>
88
<artifactId>openstack4j-core-integration-test</artifactId>

core-test/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<parent>
33
<groupId>org.pacesys</groupId>
44
<artifactId>openstack4j-parent</artifactId>
5-
<version>3.0.0-SNAPSHOT</version>
5+
<version>3.0.0</version>
66
</parent>
77
<modelVersion>4.0.0</modelVersion>
88
<artifactId>openstack4j-core-test</artifactId>

core/pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<parent>
33
<groupId>org.pacesys</groupId>
44
<artifactId>openstack4j-parent</artifactId>
5-
<version>3.0.0-SNAPSHOT</version>
5+
<version>3.0.0</version>
66
</parent>
77
<modelVersion>4.0.0</modelVersion>
88
<artifactId>openstack4j-core</artifactId>
@@ -195,8 +195,9 @@
195195
<excludePackageNames>*.internal</excludePackageNames>
196196
<reportOutputDirectory>docs</reportOutputDirectory>
197197
<destDir>javadoc</destDir>
198+
<additionalparam>-Xdoclint:none</additionalparam>
198199
</configuration>
199200
</plugin>
200201
</plugins>
201202
</reporting>
202-
</project>
203+
</project>

distribution/pom.xml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<parent>
33
<groupId>org.pacesys</groupId>
44
<artifactId>openstack4j-parent</artifactId>
5-
<version>3.0.0-SNAPSHOT</version>
5+
<version>3.0.0</version>
66
</parent>
77
<modelVersion>4.0.0</modelVersion>
88
<artifactId>openstack4j</artifactId>
@@ -37,6 +37,9 @@
3737
<goals>
3838
<goal>jar</goal>
3939
</goals>
40+
<configuration>
41+
<additionalparam>-Xdoclint:none</additionalparam>
42+
</configuration>
4043
</execution>
4144
</executions>
4245
</plugin>

pom.xml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<modelVersion>4.0.0</modelVersion>
99
<groupId>org.pacesys</groupId>
1010
<artifactId>openstack4j-parent</artifactId>
11-
<version>3.0.0-SNAPSHOT</version>
11+
<version>3.0.0</version>
1212
<name>OpenStack4j Parent</name>
1313
<description>OpenStack Java API</description>
1414
<url>http://github.com/gondor/openstack4j/</url>
@@ -18,6 +18,7 @@
1818
<aries.spifly.version>1.0.0</aries.spifly.version>
1919
<slf4j.version>1.7.21</slf4j.version>
2020
<jackson.version>2.7.3</jackson.version>
21+
<additionalparam>-Xdoclint:none</additionalparam>
2122
</properties>
2223
<licenses>
2324
<license>
@@ -234,6 +235,7 @@
234235
<excludePackageNames>*.internal</excludePackageNames>
235236
<reportOutputDirectory>docs</reportOutputDirectory>
236237
<destDir>javadoc</destDir>
238+
<additionalparam>-Xdoclint:none</additionalparam>
237239
</configuration>
238240
</plugin>
239241
</plugins>

0 commit comments

Comments
 (0)