-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
102 lines (85 loc) · 3.12 KB
/
Copy pathpom.xml
File metadata and controls
102 lines (85 loc) · 3.12 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
<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>
<groupId>io.starter</groupId>
<artifactId>StackGenUI</artifactId>
<packaging>jar</packaging>
<name>StackGenUI</name>
<version>0.9.5-SNAPSHOT</version>
<url>https://github.com/swagger-api/swagger-codegen</url>
<!-- Maven POM Generated by StackGen http://docs.stackgen.io/ -->
<description>Swagger Java</description>
<scm>
<connection>scm:git:git@github.com:swagger-api/swagger-codegen.git</connection>
<developerConnection>scm:git:git@github.com:swagger-api/swagger-codegen.git</developerConnection>
<url>https://github.com/swagger-api/swagger-codegen</url>
</scm>
<licenses>
<license>
<name>Unlicense</name>
<url>https://www.gnu.org/licenses/agpl-3.0.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Stack Dev</name>
<email>info@stackgen.io</email>
<organization>Starter Inc.</organization>
<organizationUrl>stackgen.io</organizationUrl>
</developer>
</developers>
<properties>
<stackgen.version>0.9.23</stackgen.version>
<aspectjplugin.version>1.12.9</aspectjplugin.version>
<aspectj.version>1.9.2</aspectj.version>
<spring.security.oauth>2.3.5.RELEASE</spring.security.oauth>
<spring.boot.admin.version>2.1.6</spring.boot.admin.version>
<springfox-version>2.9.2</springfox-version>
</properties>
<!-- TODO: upgrade to 2.2.0 when it no longer breaks SBA -->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.9.RELEASE</version>
</parent>
<dependencies>
<!-- STARTER DEPS -->
<dependency>
<groupId>org.springframework.security.oauth</groupId>
<artifactId>spring-security-oauth2</artifactId>
<version>${spring.security.oauth}</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-web</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
</dependency>
<dependency>
<groupId>io.starter</groupId>
<artifactId>stackgen</artifactId>
<version>0.9.7</version>
<classifier>exec</classifier>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>3.4.6</version>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjtools</artifactId>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
</dependency>
<!-- /STARTER DEPS -->
</dependencies>
</project>