Skip to content

Commit

Permalink
Merge pull request #1 from Mindera/Update_to_support_swift-5
Browse files Browse the repository at this point in the history
Update to support swift 5
  • Loading branch information
marcolcc authored Dec 4, 2020
2 parents 4e5f330 + 016ccbf commit ade668f
Show file tree
Hide file tree
Showing 39 changed files with 4,346 additions and 115 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
.idea/
*.iml
out/
target/

# Editor-based Rest Client
.idea/httpRequests
Expand Down
91 changes: 0 additions & 91 deletions mindera-openapi-generator.iml

This file was deleted.

14 changes: 13 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>mindera-openapi-generator</artifactId>
<packaging>jar</packaging>
<name>mindera-openapi-generator</name>
<version>2.2.4</version>
<version>3.0.0</version>
<build>
<plugins>
<plugin>
Expand Down Expand Up @@ -107,6 +107,11 @@
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.github.javaparser</groupId>
<artifactId>javaparser-core</artifactId>
<version>3.16.1</version>
</dependency>
<dependency>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator</artifactId>
Expand All @@ -120,6 +125,12 @@
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito-version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
Expand All @@ -133,6 +144,7 @@
<openapi-generator-version>4.3.0</openapi-generator-version>
<maven-plugin-version>1.0.0</maven-plugin-version>
<junit-version>4.8.1</junit-version>
<mockito-version>3.2.0</mockito-version>
</properties>

<distributionManagement>
Expand Down
Loading

0 comments on commit ade668f

Please sign in to comment.