diff --git a/README.md b/README.md
index e585d53..cb1488b 100644
--- a/README.md
+++ b/README.md
@@ -3,7 +3,7 @@
[](https://search.maven.org/artifact/com.vertexvis/api-client-java)
[](https://github.com/Vertexvis/vertex-api-client-java/blob/main/LICENSE)
-If you're ready to integrate Vertex into your application, this is the place! For more background on the Vertex platform, start with our [Developer Portal](https://developer.vertexvis.com/).
+If you're ready to integrate Vertex into your application, this is the place! For more background on the Vertex platform, start with our [Developer Portal](https://developer.vertex3d.com/).
The Vertex REST API client for Java is generated using [`openapi-generator`](https://github.com/OpenAPITools/openapi-generator), so it's always up-to-date.
@@ -17,7 +17,7 @@ The client can be used with Java 1.8+ and pulled into Maven or Gradle projects.
com.vertexvis
api-client-java
- 0.18.0
+ 0.18.1
compile
```
@@ -25,13 +25,13 @@ The client can be used with Java 1.8+ and pulled into Maven or Gradle projects.
### Gradle
```groovy
-compile "com.vertexvis:api-client-java:0.18.0"
+compile "com.vertexvis:api-client-java:0.18.1"
```
### Sbt
```sbt
-libraryDependencies += "com.vertexvis" % "api-client-java" % "0.18.0"
+libraryDependencies += "com.vertexvis" % "api-client-java" % "0.18.1"
```
### Others
@@ -44,7 +44,7 @@ mvn clean package
Then manually install the following JARs.
-- `target/api-client-java-0.18.0.jar`
+- `target/api-client-java-0.18.1.jar`
- `target/lib/*.jar`
## Usage
@@ -104,7 +104,7 @@ To consume published snapshot versions in other projects, add the snapshot repos
com.vertexvis
api-client-java
- 0.18.0-SNAPSHOT
+ 0.18.1-SNAPSHOT
```
@@ -119,7 +119,7 @@ repositories {
}
dependencies {
- implementation 'com.vertexvis:api-client-java:0.18.0-SNAPSHOT'
+ implementation 'com.vertexvis:api-client-java:0.18.1-SNAPSHOT'
}
```
diff --git a/build.gradle b/build.gradle
index 57cfe83..7f32cfb 100644
--- a/build.gradle
+++ b/build.gradle
@@ -3,7 +3,7 @@ plugins {
id "io.github.gradle-nexus.publish-plugin"
}
-def projectVersion = '0.18.0'
+def projectVersion = '0.18.1'
def isSnapshot = project.hasProperty('isSnapshot') && project.isSnapshot.toBoolean()
version = isSnapshot ? "${projectVersion}-SNAPSHOT" : projectVersion
diff --git a/buildSrc/src/main/groovy/vertex.java-conventions.gradle b/buildSrc/src/main/groovy/vertex.java-conventions.gradle
index ad82efb..3def6c6 100644
--- a/buildSrc/src/main/groovy/vertex.java-conventions.gradle
+++ b/buildSrc/src/main/groovy/vertex.java-conventions.gradle
@@ -45,9 +45,9 @@ publishing {
}
developers {
developer {
- email = 'support@vertexvis.com'
+ email = 'support@vertex3d.com'
name = 'Vertex Developers'
- organizationUrl = 'https://developer.vertexvis.com/'
+ organizationUrl = 'https://developer.vertex3d.com/'
}
}
scm {
diff --git a/openapi-generator-plugin/build.gradle b/openapi-generator-plugin/build.gradle
index ca9b6e6..9dd9786 100644
--- a/openapi-generator-plugin/build.gradle
+++ b/openapi-generator-plugin/build.gradle
@@ -52,9 +52,9 @@ publishing {
}
developers {
developer {
- email = 'support@vertexvis.com'
+ email = 'support@vertex3d.com'
name = 'Vertex Developers'
- organizationUrl = 'https://developer.vertexvis.com/'
+ organizationUrl = 'https://developer.vertex3d.com/'
}
}
scm {