2018-04-20 09:25:51 +02:00
<project xmlns= "http://maven.apache.org/POM/4.0.0" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation= "http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" >
<modelVersion > 4.0.0</modelVersion>
2018-05-04 10:19:07 +02:00
<groupId > org.openapitools</groupId>
2018-05-03 20:12:24 +08:00
<artifactId > myClientCodegen-openapi-generator</artifactId>
2018-04-20 09:25:51 +02:00
<packaging > jar</packaging>
2018-05-03 20:12:24 +08:00
<name > myClientCodegen-openapi-generator</name>
2018-04-20 09:25:51 +02:00
<version > 1.0.0</version>
<build >
<plugins >
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-enforcer-plugin</artifactId>
<version > 3.0.0-M1</version>
<executions >
<execution >
<id > enforce-maven</id>
<goals >
<goal > enforce</goal>
</goals>
<configuration >
<rules >
<requireMavenVersion >
<version > 2.2.0</version>
</requireMavenVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-surefire-plugin</artifactId>
2024-05-09 12:29:04 +08:00
<version > 2.22.2</version>
2018-04-20 09:25:51 +02:00
<configuration >
2024-03-23 21:45:29 +08:00
<systemPropertyVariables >
2018-04-20 09:25:51 +02:00
<property >
<name > loggerPath</name>
<value > conf/log4j.properties</value>
</property>
2024-03-23 21:45:29 +08:00
</systemPropertyVariables>
2018-04-20 09:25:51 +02:00
<argLine > -Xms512m -Xmx1500m</argLine>
<parallel > methods</parallel>
</configuration>
</plugin>
<!-- attach test jar -->
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-jar-plugin</artifactId>
<version > 2.2</version>
<executions >
<execution >
<goals >
<goal > jar</goal>
<goal > test-jar</goal>
</goals>
</execution>
</executions>
<configuration >
</configuration>
</plugin>
<plugin >
<groupId > org.codehaus.mojo</groupId>
<artifactId > build-helper-maven-plugin</artifactId>
2018-05-17 17:21:33 +02:00
<version > 3.0.0</version>
2018-04-20 09:25:51 +02:00
<executions >
<execution >
<id > add_sources</id>
<phase > generate-sources</phase>
<goals >
<goal > add-source</goal>
</goals>
<configuration >
<sources >
<source >
src/main/java</source>
</sources>
</configuration>
</execution>
<execution >
<id > add_test_sources</id>
<phase > generate-test-sources</phase>
<goals >
<goal > add-test-source</goal>
</goals>
<configuration >
<sources >
<source >
src/test/java</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-compiler-plugin</artifactId>
<version > 3.6.1</version>
<configuration >
2018-08-29 06:56:37 +02:00
<source > 1.8</source>
<target > 1.8</target>
2018-04-20 09:25:51 +02:00
</configuration>
</plugin>
</plugins>
</build>
<dependencies >
<dependency >
<groupId > org.openapitools</groupId>
<artifactId > openapi-generator</artifactId>
<version > ${openapi-generator-version}</version>
<scope > provided</scope>
</dependency>
2019-03-15 20:53:45 -07:00
<dependency >
2024-06-01 10:40:40 +02:00
<groupId > org.junit.jupiter</groupId>
<artifactId > junit-jupiter-api</artifactId>
2019-03-15 20:53:45 -07:00
<version > ${junit-version}</version>
2024-05-09 12:29:04 +08:00
<scope > test</scope>
2021-08-17 18:37:51 +08:00
</dependency>
2018-04-20 09:25:51 +02:00
</dependencies>
<properties >
<project.build.sourceEncoding > UTF-8</project.build.sourceEncoding>
2026-01-20 03:13:58 +08:00
<openapi-generator-version > 7.20.0-SNAPSHOT</openapi-generator-version>
2018-04-20 09:25:51 +02:00
<maven-plugin-version > 1.0.0</maven-plugin-version>
2024-06-01 10:40:40 +02:00
<junit-version > 5.10.2</junit-version>
2018-04-20 09:25:51 +02:00
</properties>
</project>