forked from ctran/TinyRadius
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
79 lines (78 loc) · 2.53 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
<?xml version="1.0"?>
<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>org.tinyradius</groupId>
<artifactId>tinyradius</artifactId>
<version>1.1.0</version>
<packaging>jar</packaging>
<name>TinyRadius Java Radius Library</name>
<description>
TinyRadius is a simple, small and fast Java Radius library capable of sending and receiving Radius packets of all types. It is released under the terms of the LGPL.
</description>
<url>https://github.com/ctran/TinyRadius</url>
<developers>
<developer>
<id>wuttke</id>
<name>Matthias Wuttke</name>
<email>[email protected]</email>
<timezone>CEST</timezone>
</developer>
<developer>
<id>ctran</id>
<email>[email protected]</email>
</developer>
</developers>
<licenses>
<license>
<name>Lesser General Public License (LGPL)</name>
<url>${project.basedir}/LICENSE</url>
<distribution>local</distribution>
</license>
</licenses>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.6.4</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.6.4</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.14</version>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<!-- include default dictionary file from the java source -->
<directory>src/main/java</directory>
<filtering>false</filtering>
<includes>
<include>**/default_dictionary</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>