-
Notifications
You must be signed in to change notification settings - Fork 5
/
pom.xml
107 lines (98 loc) · 3.45 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
<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>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>fr.inria.jfilter</groupId>
<artifactId>jfilter-library</artifactId>
<version>1.3-SNAPSHOT</version>
<packaging>jar</packaging>
<name>JFilter Library</name>
<url>https://github.com/rouvoy/jfilter</url>
<inceptionYear>2012</inceptionYear>
<description>JFilter is a library to match POJOs against various type of filters (LDAP, JSON, etc.).</description>
<licenses>
<license>
<name>The GNU Lesser General Public License, Version 2</name>
<url>http://www.gnu.org/licenses/lgpl-2.1.html</url>
</license>
</licenses>
<scm>
<url>https://github.com/rouvoy/jfilter.git</url>
<connection>scm:git:ssh://[email protected]/rouvoy/jfilter.git</connection>
<developerConnection>scm:git:ssh://[email protected]/rouvoy/jfilter.git</developerConnection>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<!--configuration>
<systemProperties>
<property>
<name>java.util.logging.config.file</name>
<value>src/test/resources/logging.properties</value>
</property>
</systemProperties>
</configuration-->
</plugin>
<plugin>
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<version>1.9.0</version>
<configuration>
<header>src/main/resources/META-INF/license.txt</header>
<failIfMissing>true</failIfMissing>
<aggregate>true</aggregate>
<strictCheck>true</strictCheck>
<properties>
<license.name>University Lille 1, Inria</license.name>
<license.year>2012</license.year>
<contact.name>[email protected]</contact.name>
</properties>
<excludes>
<exclude>**.gitignore</exclude>
<exclude>**README.md</exclude>
<exclude>**.cache</exclude>
<exclude>**/src/main/resources/**</exclude>
<exclude>**/src/test/resources/**</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<developers>
<developer>
<id>rouvoy</id>
<name>Romain Rouvoy</name>
<email>[email protected]</email>
<organization>University Lille 1 / Inria</organization>
<organizationUrl>http://www.univ-lille1.fr</organizationUrl>
<roles>
<role>Architect</role>
<role>Developer</role>
</roles>
</developer>
</developers>
</project>