forked from loafle/openapi-generator-original
* [elm] Remove support for Elm 0.18 * [elm] Drop `Main.elm` * [elm] Put all models in a single file * [elm] Put generated code in `Api` package * [elm] Introduce Request type for operations * [elm] Generate list of enum variants * [elm] Make default Time module * [elm] Small improvements & fixes * [elm] Improve support for allOf * All of types are now nested; * Adding a discriminator creates a custom type wrapping all variants and a 'catch-all' fallback variant. * [elm] Add support for recursive types * [elm] Add catch-all type for allOf * [elm] Drop support for post-processing of files * [elm] Only import required packages * [elm] Handle reserved and unsafe words * [elm] Minor improvements * [elm] Add support for integer enums * [elm] Remove additional slash in path * [elm] Add link to docs * [elm] Update CI test file & scripts
44 lines
1.5 KiB
XML
44 lines
1.5 KiB
XML
<project>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.openapitools</groupId>
|
|
<artifactId>ElmTests</artifactId>
|
|
<packaging>pom</packaging>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<name>Elm Client</name>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>copy-dependencies</goal>
|
|
</goals>
|
|
<configuration>
|
|
<outputDirectory>${project.build.directory}</outputDirectory>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
<version>1.2.1</version>
|
|
<executions>
|
|
<execution>
|
|
<id>bundle-test</id>
|
|
<phase>integration-test</phase>
|
|
<goals>
|
|
<goal>exec</goal>
|
|
</goals>
|
|
<configuration>
|
|
<executable>./elm-compile-test</executable>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|