forked from bcgov/iamp-email-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
108 lines (96 loc) · 3.26 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>ca.bc.gov.iamp</groupId>
<artifactId>spring-boot-api-service</artifactId>
<version>1.0.1</version>
</parent>
<groupId>ca.bc.gov.iamp</groupId>
<artifactId>iamp-email-service</artifactId>
<version>1.0.0</version>
<name>iamp-email-service</name>
<description></description>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- Spring Starter Mail -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-mail</artifactId>
</dependency>
<!-- Spring Cloud Config -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-config</artifactId>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-api-mockito2</artifactId>
<version>2.0.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.icegreen</groupId>
<artifactId>greenmail</artifactId>
<version>1.5.10</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.awaitility</groupId>
<artifactId>awaitility</artifactId>
<version>3.0.0</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>io.swagger</groupId>
<artifactId>swagger-codegen-maven-plugin</artifactId>
<version>2.4.5</version>
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<typeMappings>
<typeMapping>byte[]=org.springframework.web.multipart.MultipartFile</typeMapping>
</typeMappings>
<skipIfSpecIsUnchanged>false</skipIfSpecIsUnchanged>
<inputSpec>${project.basedir}/src/main/resources/email-notificator-spec-2.0.yaml</inputSpec>
<output>${project.basedir}</output>
<language>spring</language>
<library>spring-boot</library>
<generateSupportingFiles>false</generateSupportingFiles>
<apiPackage>ca.bc.gov.iamp.email.api</apiPackage>
<generateApis>true</generateApis>
<generateApiDocumentation>false</generateApiDocumentation>
<generateApiTests>false</generateApiTests>
<generateModels>true</generateModels>
<generateModelDocumentation>false</generateModelDocumentation>
<generateModelTests>false</generateModelTests>
<modelPackage>ca.bc.gov.iamp.email.model</modelPackage>
<configOptions>
<hideGenerationTimestamp>true</hideGenerationTimestamp>
<sourceFolder>src/main/java</sourceFolder>
<dateLibrary>java8</dateLibrary>
<interfaceOnly>true</interfaceOnly>
<java8>true</java8>
<configPackage>ca.bc.gov.iamp.email.config</configPackage>
<useBeanValidation>true</useBeanValidation>
<delegatePattern>true</delegatePattern>
</configOptions>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>