-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
113 lines (105 loc) · 4.22 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
109
110
111
112
113
<?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>
<groupId>io.curity.identityserver.plugin</groupId>
<artifactId>identityserver.plugins.authenticators.username</artifactId>
<version>1.4.1</version>
<packaging>jar</packaging>
<name>Curity Username Authenticator</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.curityVersion>6.0.0</project.curityVersion>
<project.slf4jVersion>1.7.25</project.slf4jVersion>
<project.kotlinVersion>1.3.72</project.kotlinVersion>
<project.hibernateValidatorVersion>5.4.3.Final</project.hibernateValidatorVersion>
</properties>
<build>
<sourceDirectory>src/main/kotlin</sourceDirectory>
<plugins>
<plugin>
<artifactId>kotlin-maven-plugin</artifactId>
<groupId>org.jetbrains.kotlin</groupId>
<!--suppress DifferentKotlinMavenVersion -->
<version>${project.kotlinVersion}</version>
<executions>
<execution>
<id>compile</id>
<phase>compile</phase>
<goals><goal>compile</goal></goals>
</execution>
<execution>
<id>test-compile</id>
<phase>test-compile</phase>
<goals><goal>test-compile</goal></goals>
</execution>
</executions>
<configuration>
<jvmTarget>1.8</jvmTarget>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>se.curity.identityserver</groupId>
<artifactId>identityserver.sdk</artifactId>
<version>${project.curityVersion}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${project.slf4jVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
<version>${project.kotlinVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<version>${project.hibernateValidatorVersion}</version>
<scope>provided</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>customer-release-repo</id>
<url>https://nexus.curityio.net/repository/customer-release-repo/</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>customer-snapshot-repo</id>
<url>https://nexus.curityio.net/repository/customer-snapshot-repo</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<distributionManagement>
<repository>
<id>customer-release-repo</id>
<name>Curity Nexus Release Repository</name>
<url>https://nexus.curityio.net/repository/customer-release-repo/</url>
</repository>
<snapshotRepository>
<id>customer-snapshot-repo</id>
<name>Curity Nexus Snapshot Repository</name>
<url>https://nexus.curityio.net/repository/customer-snapshot-repo/</url>
</snapshotRepository>
</distributionManagement>
</project>