Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Update pom.xml versions by removing hardcoded values in config.json file #60

Merged
merged 1 commit into from
Oct 17, 2024
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
6 changes: 3 additions & 3 deletions equinix-openapi-fabric/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>com.equinix</groupId>
<artifactId>equinix-openapi-fabric</artifactId>
<version>0.5.0</version>
<version>0.10.0</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -56,7 +56,7 @@ Add this dependency to your project's build file:
}

dependencies {
implementation "com.equinix:equinix-openapi-fabric:0.5.0"
implementation "com.equinix:equinix-openapi-fabric:0.10.0"
}
```

Expand All @@ -70,7 +70,7 @@ mvn clean package

Then manually install the following JARs:

* `target/equinix-openapi-fabric-0.5.0.jar`
* `target/equinix-openapi-fabric-0.10.0.jar`
* `target/lib/*.jar`

## Getting Started
Expand Down
2 changes: 1 addition & 1 deletion equinix-openapi-fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apply plugin: 'java'
apply plugin: 'com.diffplug.spotless'

group = 'com.equinix'
version = '0.5.0'
version = '0.10.0'

buildscript {
repositories {
Expand Down
2 changes: 1 addition & 1 deletion equinix-openapi-fabric/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
settings(
organization := "com.equinix",
name := "equinix-openapi-fabric",
version := "0.5.0",
version := "0.10.0",
scalaVersion := "2.11.4",
scalacOptions ++= Seq("-feature"),
javacOptions in compile ++= Seq("-Xlint:deprecation"),
Expand Down
4 changes: 2 additions & 2 deletions equinix-openapi-fabric/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
<artifactId>equinix-openapi-fabric</artifactId>
<packaging>jar</packaging>
<name>equinix-openapi-fabric</name>
<version>0.5.0</version>
<version>0.10.0</version>
<url>https://github.com/openapitools/openapi-generator</url>
<description>Equinix Fabric API Specification 4.11 generated SDK</description>
<description>OpenAPI Java</description>
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we need to add 'SDK' in this description?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's just default from the open api generator. For now we can leave as is and return to it later with a longer term fix. Just need to get this release cycle handled properly.

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sure

<scm>
<connection>scm:git:[email protected]:openapitools/openapi-generator.git</connection>
<developerConnection>scm:git:[email protected]:openapitools/openapi-generator.git</developerConnection>
Expand Down
2 changes: 0 additions & 2 deletions spec/oas3.fabric.config.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
{
"groupId": "com.equinix",
"artifactId": "equinix-openapi-fabric",
"artifactVersion": "0.5.0",
"artifactDescription": "Equinix Fabric API Specification 4.11 generated SDK",
"library": "okhttp-gson",
"invokerPackage": "com.equinix.openapi.fabric",
"modelPackage": "com.equinix.openapi.fabric.v4.model",
Expand Down
Loading