forked from loafle/openapi-generator-original
* [python-fastapi] Fixed integration tests Currently, it is required to use python 3.7 to make python-fastapi generator work. This version is already set in the generated Dockerfile. Thus, it makes sense to build this image. Spotify's docker maven plugin can be used to build the docker image. Signed-off-by: Nikita Vakula <programmistov.programmist@gmail.com> * fixup! [python-fastapi] Fixed integration tests Signed-off-by: Nikita Vakula <programmistov.programmist@gmail.com>
41 lines
1.4 KiB
XML
41 lines
1.4 KiB
XML
<project>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.openapitools</groupId>
|
|
<artifactId>PythonFastAPITests</artifactId>
|
|
<packaging>pom</packaging>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<name>Python FastAPI Server</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>com.spotify</groupId>
|
|
<artifactId>dockerfile-maven-plugin</artifactId>
|
|
<version>1.4.13</version>
|
|
<executions>
|
|
<execution>
|
|
<id>test</id>
|
|
<phase>integration-test</phase>
|
|
<goals>
|
|
<goal>build</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|