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
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![Version](https://img.shields.io/maven-central/v/com.vertexvis/api-client-java)](https://search.maven.org/artifact/com.vertexvis/api-client-java)
[![MIT License](https://img.shields.io/github/license/vertexvis/vertex-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.

Expand All @@ -17,21 +17,21 @@ The client can be used with Java 1.8+ and pulled into Maven or Gradle projects.
<dependency>
<groupId>com.vertexvis</groupId>
<artifactId>api-client-java</artifactId>
<version>0.18.0</version>
<version>0.18.1</version>
<scope>compile</scope>
</dependency>
```

### 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
Expand All @@ -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
Expand Down Expand Up @@ -104,7 +104,7 @@ To consume published snapshot versions in other projects, add the snapshot repos
<dependency>
<groupId>com.vertexvis</groupId>
<artifactId>api-client-java</artifactId>
<version>0.18.0-SNAPSHOT</version>
<version>0.18.1-SNAPSHOT</version>
</dependency>
```

Expand All @@ -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'
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions buildSrc/src/main/groovy/vertex.java-conventions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
4 changes: 2 additions & 2 deletions openapi-generator-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
Loading