Skip to content

Commit

Permalink
test demonstrating dream code generation with mixins for multiple all…
Browse files Browse the repository at this point in the history
…Of types

* Upgrade openapi-generator version
  • Loading branch information
jhannes committed Aug 22, 2024
1 parent c08c766 commit 0dd5fd4
Show file tree
Hide file tree
Showing 19 changed files with 432 additions and 17 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Add to your `pom.xml`:
<plugin>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-maven-plugin</artifactId>
<version>7.7.0</version>
<version>7.8.0</version>
<executions>
<execution>
<id>openapi-java</id>
Expand Down
8 changes: 7 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<dependency>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator</artifactId>
<version>7.7.0</version>
<version>7.8.0</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand All @@ -45,6 +45,12 @@
<version>1.3.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.26.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.7.0
7.8.0
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.7.0
7.8.0
2 changes: 1 addition & 1 deletion snapshotTests/snapshot/example/.openapi-generator/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.7.0
7.8.0
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.7.0
7.8.0
2 changes: 1 addition & 1 deletion snapshotTests/snapshot/geojson/.openapi-generator/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.7.0
7.8.0
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.7.0
7.8.0
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.7.0
7.8.0
2 changes: 1 addition & 1 deletion snapshotTests/snapshot/petstore/.openapi-generator/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.7.0
7.8.0
2 changes: 1 addition & 1 deletion snapshotTests/snapshot/poly/.openapi-generator/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.7.0
7.8.0
2 changes: 1 addition & 1 deletion snapshotTests/snapshot/readOnly/.openapi-generator/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.7.0
7.8.0
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.7.0
7.8.0
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.7.0
7.8.0
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.7.0
7.8.0
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.7.0
7.8.0
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
*/
public class FocusedExampleTest extends AbstractSnapshotTest {

public static final Path SPEC = SNAPSHOT_ROOT.resolve("input/poly.yaml");
public static final Path SPEC = SNAPSHOT_ROOT.resolve("input/readOnly.yaml");
public static final Path ROOT_DIR = SPEC.getParent().getParent();

@TestFactory
Expand Down
Loading

0 comments on commit 0dd5fd4

Please sign in to comment.