Skip to content
This repository was archived by the owner on Dec 25, 2024. It is now read-only.

Commit 8fa0641

Browse files
committed
Removes maven and gradle modules
1 parent 3e42791 commit 8fa0641

File tree

77 files changed

+7
-11046
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+7
-11046
lines changed

README.md

Lines changed: 6 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,9 @@ Definitely!
4343
- [Table of Contents](#table-of-contents)
4444
- [1 - Installation](#1---installation)
4545
- [1.1 - Compatibility](#11---compatibility)
46-
- [1.2 - Artifacts on Maven Central](#12---artifacts-on-maven-central)
47-
- [1.3 - Download JAR](#13---download-jar)
48-
- [1.4 - Build Projects](#14---build-projects)
49-
- [1.5 - Docker](#15---docker)
46+
- [1.2 - Download JAR](#12---download-jar)
47+
- [1.3 - Build Projects](#13---build-projects)
48+
- [1.4 - Docker](#14---docker)
5049
- [2 - Getting Started](#2---getting-started)
5150
- [3 - Usage](#3---usage)
5251
- [3.1 - Customization](#31---customization)
@@ -71,53 +70,7 @@ The OpenAPI Specification has undergone 3 revisions since initial creation in 20
7170
OpenAPI Spec compatibility: 3.0
7271

7372

74-
## [1.2 - Artifacts on Maven Central](#table-of-contents)
75-
76-
You can find our released artifacts on maven central:
77-
78-
**Core:**
79-
```xml
80-
<dependency>
81-
<groupId>org.openapitools</groupId>
82-
<artifactId>openapi-json-schema-generator</artifactId>
83-
<version>${openapi-json-schema-generator-version}</version>
84-
</dependency>
85-
```
86-
See the different versions of the [openapi-json-schema-generator](https://search.maven.org/artifact/org.openapitools/openapi-json-schema-generator) artifact available on maven central.
87-
88-
**Cli:**
89-
```xml
90-
<dependency>
91-
<groupId>org.openapitools</groupId>
92-
<artifactId>openapi-json-schema-generator-cli</artifactId>
93-
<version>${openapi-json-schema-generator-version}</version>
94-
</dependency>
95-
```
96-
See the different versions of the [openapi-json-schema-generator-cli](https://search.maven.org/artifact/org.openapitools/openapi-json-schema-generator-cli) artifact available on maven central.
97-
98-
**Maven plugin:**
99-
```xml
100-
<dependency>
101-
<groupId>org.openapitools</groupId>
102-
<artifactId>openapi-json-schema-generator-maven-plugin</artifactId>
103-
<version>${openapi-json-schema-generator-version}</version>
104-
</dependency>
105-
```
106-
* See the different versions of the [openapi-json-schema-generator-maven-plugin](https://search.maven.org/artifact/org.openapitools/openapi-json-schema-generator-maven-plugin) artifact available on maven central.
107-
* [Readme](https://github.com/OpenAPITools/openapi-json-schema-generator/blob/master/modules/openapi-json-schema-generator-maven-plugin/README.md)
108-
109-
**Gradle plugin:**
110-
```xml
111-
<dependency>
112-
<groupId>org.openapitools</groupId>
113-
<artifactId>openapi-json-schema-generator-gradle-plugin</artifactId>
114-
<version>${openapi-json-schema-generator-version}</version>
115-
</dependency>
116-
```
117-
* See the different versions of the [openapi-json-schema-generator-gradle-plugin](https://search.maven.org/artifact/org.openapitools/openapi-json-schema-generator-gradle-plugin) artifact available on maven central.
118-
* [Readme](https://github.com/OpenAPITools/openapi-json-schema-generator/blob/master/modules/openapi-json-schema-generator-gradle-plugin/README.adoc)
119-
120-
### [1.3 - Download JAR](#table-of-contents)
73+
### [1.2 - Download JAR](#table-of-contents)
12174
<!-- RELEASE_VERSION -->
12275
If you're looking for the latest stable version, you can grab it directly from Maven.org (Java 8 runtime at a minimum):
12376

@@ -142,7 +95,7 @@ export PATH=${JAVA_HOME}/bin:$PATH
14295
```
14396
<!-- /RELEASE_VERSION -->
14497

145-
### [1.4 - Build Projects](#table-of-contents)
98+
### [1.3 - Build Projects](#table-of-contents)
14699

147100
To build from source, you need the following installed and available in your `$PATH:`
148101

@@ -166,7 +119,7 @@ The default build contains minimal static analysis (via CheckStyle). To run your
166119
mvn -Pstatic-analysis clean install
167120
```
168121

169-
### [1.5 - Docker](#table-of-contents)
122+
### [1.4 - Docker](#table-of-contents)
170123

171124
#### Public Pre-built Docker images
172125

modules/openapi-json-schema-generator-cli/src/main/java/org/openapitools/codegen/cmd/BuildInfo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public class BuildInfo {
3131
}
3232
} catch (IOException ignored) {
3333
}
34-
try (InputStream is = BuildInfo.class.getResourceAsStream("/openapi-generator-git.properties")) {
34+
try (InputStream is = BuildInfo.class.getResourceAsStream("/openapi-json-schema-generator-git.properties")) {
3535
if (is != null) {
3636
Properties gitProps = new Properties();
3737
gitProps.load(is);

modules/openapi-json-schema-generator-gradle-plugin/.gitignore

Lines changed: 0 additions & 149 deletions
This file was deleted.

0 commit comments

Comments
 (0)