-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
114 lines (103 loc) · 3.04 KB
/
Copy pathpom.xml
File metadata and controls
114 lines (103 loc) · 3.04 KB
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
109
110
111
112
113
114
<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>io.starter</groupId>
<version>0.9.31-SNAPSHOT</version>
<artifactId>stackgen-parent</artifactId>
</parent>
<artifactId>stackgen-pro</artifactId>
<name>Starter StackGen PRO</name>
<description>Starter StackGen PRO</description>
<url>https://docs.stackgen.io</url>
<properties>
<!-- stackgen version can diverge from stackgen-parent
<stackgen.version>0.9.26-SNAPSHOT</stackgen.version>-->
<!-- The main class to start by executing "java -jar" -->
<start-class>io.starter.stackgen.web.StackGenApplication</start-class>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<springfox-version>2.9.2</springfox-version>
</properties>
<dependencies>
<dependency>
<groupId>io.starter</groupId>
<artifactId>stackgen</artifactId>
<version>${project.version}</version>
</dependency>
<!-- 1.12 -->
<!--SpringFox dependencies -->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>${springfox-version}</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>${springfox-version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>io.starter</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<version>${aspectjplugin.version}</version>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>test-compile</goal>
</goals>
<configuration>
<aspectLibraries>
<aspectLibrary>
<groupId>io.starter</groupId>
<artifactId>stackgen</artifactId>
</aspectLibrary>
</aspectLibraries>
<!-- MUST use 10, NOT 1.10 or ajc breaks -->
<source>1.8</source>
<target>1.8</target>
<complianceLevel>1.8</complianceLevel>
<sources>
<source>
<basedir>src/test/java</basedir>
<includes>
<include>**/*.jav≠a</include>
</includes>
</source>
<source>
<basedir>src/main/java</basedir>
<includes>
<include>**/*.java</include>
</includes>
</source>
</sources>
<showWeaveInfo>true</showWeaveInfo>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<source>8</source>
<failOnError>false</failOnError>
<additionalOptions>-Xdoclint:none</additionalOptions>
</configuration>
</plugin>
</plugins>
</build>
<scm>
<tag>stackgen-pro-0.9.18</tag>
</scm>
</project>