dept44-example
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>se.sundsvall</groupId>
<artifactId>dept44-example</artifactId>
<version>8.0.8</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>se.sundsvall.dept44</groupId>
<artifactId>dept44-service-parent</artifactId>
<version>8.0.8</version>
<relativePath>../dept44-service-parent</relativePath>
</parent>
<groupId>se.sundsvall</groupId>
<artifactId>dept44-example</artifactId>
<name>dept44-example</name>
<description>Example implementation</description>
<url>https://github.com/Sundsvallskommun/dept44</url>
<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
</license>
</licenses>
<developers>
<developer>
<name>Utvecklingsfabriken Sundsvall kommun</name>
<url>https://github.com/orgs/Sundsvallskommun/people</url>
<organization>Sundsvalls kommun</organization>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/Sundsvallskommun/dept44.git</connection>
<developerConnection>scm:git:https://github.com/Sundsvallskommun/dept44.git</developerConnection>
<tag>dept44-release-8.0.8</tag>
<url>https://github.com/Sundsvallskommun/dept44</url>
</scm>
<properties>
<generated-sources-path>${project.build.directory}/generated-sources</generated-sources-path>
<central.skipPublishing>true</central.skipPublishing>
<maven.deploy.skip>true</maven.deploy.skip>
<maven.source.skip>false</maven.source.skip>
<maven.javadoc.skip>false</maven.javadoc.skip>
</properties>
<dependencies>
<dependency>
<groupId>se.sundsvall.dept44</groupId>
<artifactId>dept44-starter-feign</artifactId>
</dependency>
<dependency>
<groupId>se.sundsvall.dept44</groupId>
<artifactId>dept44-starter-jpa</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-webmvc</artifactId>
</dependency>
<dependency>
<groupId>se.sundsvall.dept44</groupId>
<artifactId>dept44-starter-scheduler</artifactId>
</dependency>
<!-- Test -->
<dependency>
<groupId>se.sundsvall.dept44</groupId>
<artifactId>dept44-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>se.sundsvall.dept44</groupId>
<artifactId>dept44-starter-jpa-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>${build-helper-maven-plugin.version}</version>
<executions>
<execution>
<id>add-generated-source</id>
<goals>
<goal>add-source</goal>
</goals>
<phase>initialize</phase>
<configuration>
<sources>
<source>${generated-sources-path}/models</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/generated/**</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-maven-plugin</artifactId>
<executions>
<execution>
<id>petstore-api</id>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<inputSpec>${basedir}/src/main/resources/integrations/petstore-api.yaml</inputSpec>
<output>${generated-sources-path}</output>
<generatorName>spring</generatorName>
<generateApis>false</generateApis>
<generateSupportingFiles>false</generateSupportingFiles>
<configOptions>
<sourceFolder>models</sourceFolder>
<dateLibrary>java8</dateLibrary>
<modelPackage>generated.swagger.io.petstore</modelPackage>
<openApiNullable>false</openApiNullable>
<generatePom>false</generatePom>
<useBeanValidation>false</useBeanValidation>
<useSwaggerAnnotations>false</useSwaggerAnnotations>
<interfaceOnly>true</interfaceOnly>
<useSpringBoot4>true</useSpringBoot4>
<useJackson3>true</useJackson3>
</configOptions>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>