Mercurial > hg > test-repo
comparison jndi/pom.xml @ 21:e1a9127a7d57
add sample code for writing into LDAP
author | Dirk Olmes <dirk.olmes@codedo.de> |
---|---|
date | Tue, 25 Oct 2016 14:56:08 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
20:242ed49b42c9 | 21:e1a9127a7d57 |
---|---|
1 <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"> | |
2 <modelVersion>4.0.0</modelVersion> | |
3 <groupId>de.codedo</groupId> | |
4 <artifactId>jndi</artifactId> | |
5 <version>1.0-SNAPSHOT</version> | |
6 | |
7 <build> | |
8 <plugins> | |
9 <plugin> | |
10 <groupId>org.apache.maven.plugins</groupId> | |
11 <artifactId>maven-compiler-plugin</artifactId> | |
12 <version>3.1</version> | |
13 <configuration> | |
14 <source>1.8</source> | |
15 <target>1.8</target> | |
16 </configuration> | |
17 </plugin> | |
18 </plugins> | |
19 </build> | |
20 | |
21 <dependencies> | |
22 <dependency> | |
23 <groupId>junit</groupId> | |
24 <artifactId>junit</artifactId> | |
25 <version>4.12</version> | |
26 <scope>test</scope> | |
27 </dependency> | |
28 </dependencies> | |
29 </project> |