forked from ghaskins/yaws-security
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
35 lines (33 loc) · 851 Bytes
/
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
<?xml version="1.0" encoding="UTF-8"?>
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.ghaskins</groupId>
<artifactId>yaws_security</artifactId>
<name>YAWS Security Library</name>
<version>0.1.1</version>
<packaging>erlang-otp</packaging>
<dependencies>
<dependency>
<groupId>com.github.klacke</groupId>
<artifactId>yaws</artifactId>
<version>1.89</version>
<type>erlang-otp</type>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>com.github.ghaskins</groupId>
<artifactId>maven-erlang-plugin</artifactId>
<version>1.0</version>
<extensions>true</extensions>
<configuration>
<otpDependencies>
<code>sasl</code>
</otpDependencies>
<skipDialyzer>true</skipDialyzer>
</configuration>
</plugin>
</plugins>
</build>
</project>