This repository has been archived by the owner on Apr 18, 2024. It is now read-only.
forked from pac4j/play-pac4j
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
92 lines (83 loc) · 3.25 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
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="https://maven.apache.org/POM/4.0.0" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.pac4j</groupId>
<artifactId>play-pac4j-parent</artifactId>
<version>7.0.2-SNAPSHOT</version>
</parent>
<artifactId>play-pac4j_2.11</artifactId>
<packaging>jar</packaging>
<name>pac4j implementation for Play framework (Scala 2.11)</name>
<description>Security library for Play framework based on pac4j using Scala 2.11</description>
<properties>
<scala.version>2.11</scala.version>
</properties>
<dependencies>
<dependency>
<groupId>com.typesafe.play</groupId>
<artifactId>play_${scala.version}</artifactId>
<version>${play.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.typesafe.play</groupId>
<artifactId>play-cache_${scala.version}</artifactId>
<version>${play.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>be.objectify</groupId>
<artifactId>deadbolt-java_${scala.version}</artifactId>
<version>${deadbolt.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>be.objectify</groupId>
<artifactId>deadbolt-scala_${scala.version}</artifactId>
<version>${deadbolt.version}</version>
<scope>provided</scope>
</dependency>
<!-- tests -->
<dependency>
<groupId>com.typesafe.play</groupId>
<artifactId>play-test_${scala.version}</artifactId>
<version>${play.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.scalatest</groupId>
<artifactId>scalatest_${scala.version}</artifactId>
<version>3.0.5</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<testSourceDirectory>../shared/src/test/java</testSourceDirectory>
<testResources>
<testResource>
<directory>../shared/src/test/resources</directory>
</testResource>
</testResources>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>../shared/src/main/java</source>
<source>../shared/src/main/scala</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>