generated from kinde-oss/kinde-oss-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpom.xml
More file actions
43 lines (42 loc) · 1.38 KB
/
pom.xml
File metadata and controls
43 lines (42 loc) · 1.38 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
<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>
<parent>
<groupId>com.kinde.spring</groupId>
<artifactId>kinde-spring-parent-pom</artifactId>
<version>2.2.0</version>
</parent>
<groupId>com.kinde.spring</groupId>
<artifactId>kinde-springboot-starter</artifactId>
<packaging>jar</packaging>
<version>2.2.0</version>
<name>kinde-springboot-starter</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>com.kinde.spring</groupId>
<artifactId>kinde-springboot-core</artifactId>
<version>2.2.0</version>
</dependency>
<dependency>
<groupId>com.kinde</groupId>
<artifactId>kinde-core</artifactId>
<version>2.2.0</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-web</artifactId>
<version>6.5.9</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-crypto</artifactId>
<version>6.5.5</version>
</dependency>
</dependencies>
<build>
<plugins>
<!-- Remove nexus-staging-maven-plugin if present -->
</plugins>
</build>
</project>