<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>pagerduty-models</groupId>
<artifactId>pagerduty-models-codegen</artifactId>
<version>0.1.0-SNAPSHOT</version>
<name>pagerduty-models</name>
<build>
<sourceDirectory>${project.basedir}/java</sourceDirectory>
<plugins>
<plugin>
<groupId>io.swagger.codegen.v3</groupId>
<artifactId>swagger-codegen-maven-plugin</artifactId>
<version>3.0.33</version>
<executions>
<execution>
<id>default</id>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<inputSpec>https://raw.githubusercontent.com/fussybeaver/pagerduty-api-schema/praiya-master/reference/REST/openapiv3.json</inputSpec>
<language>pagerduty.PagerDutyCodegen</language>
<output>${project.basedir}</output>
<generateApis>true</generateApis>
<templateDirectory>${project.basedir}/templates</templateDirectory>
<configOptions>
<packageName>pagerduty-models-models</packageName>
<packageVersion>0</packageVersion>
<targetApiPrefix>default</targetApiPrefix>
<skipSerializingIfNone>true</skipSerializingIfNone>
</configOptions>
</configuration>
</execution>
<execution>
<id>slack</id>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<inputSpec>https://raw.githubusercontent.com/fussybeaver/pagerduty-api-schema/praiya-master/reference/integration-slack-service/openapiv3.json</inputSpec>
<language>pagerduty.PagerDutyCodegen</language>
<output>${project.basedir}</output>
<generateApis>true</generateApis>
<templateDirectory>${project.basedir}/templates</templateDirectory>
<configOptions>
<packageName>pagerduty-models-models</packageName>
<packageVersion>0</packageVersion>
<targetApiPrefix>slack</targetApiPrefix>
<skipSerializingIfNone>false</skipSerializingIfNone>
</configOptions>
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>pagerduty-models</groupId>
<artifactId>pagerduty-models-codegen</artifactId>
<version>0.1.0-SNAPSHOT</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>io.swagger.codegen.v3</groupId>
<artifactId>swagger-codegen</artifactId>
<version>3.0.33</version>
</dependency>
<dependency>
<groupId>io.swagger.codegen.v3</groupId>
<artifactId>swagger-codegen-generators</artifactId>
<version>1.0.32</version>
</dependency>
</dependencies>
</project>