Skip to content

Commit 410fe72

Browse files
Turned into boot
1 parent 827f534 commit 410fe72

File tree

7 files changed

+259
-197
lines changed

7 files changed

+259
-197
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
*.class
2+
.idea
3+
target

README.md

+20-8
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,31 @@
1-
Java Keystore LDAPS Test
1+
Java LDAP Test
22
====================
33

4-
##Configuration
5-
See [`Test.properties`](https://github.com/mmoayyed/java-ldap-ssl-test/blob/master/Test.properties).
4+
This is a small test utility that attempts to connect to an LDAP instance,
5+
authenticate a given credential and retrieve attributes. It is very helpful
6+
for testing secure connections, LDAPS and certificate configuration.
67

7-
##Build
8-
To compile and then use, execute:
8+
## Configuration
99

10+
See [`Test.properties`](https://github.com/mmoayyed/java-ldap-ssl-test/blob/master/src/main/resources/Test.properties).
11+
12+
## Build
13+
14+
```bash
15+
mvn clean package
1016
```
11-
javac Test.java
12-
java Test
17+
18+
## Usage
19+
20+
- Download the JAR from [here](https://github.com/UniconLabs/java-ldap-ssl-test/releases)
21+
- Run:
22+
23+
```
24+
java -jar <jar-file-name>
1325
```
1426

1527
##Sample output
28+
1629
The log below demonstrates a sample of the program output configured to hit 5 ldap urls.
1730

1831
```
@@ -86,4 +99,3 @@ The log below demonstrates a sample of the program output configured to hit 5 ld
8699
87100
[INFO] Ldap search completed successfully.
88101
```
89-

Test.java

-184
This file was deleted.

pom.xml

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>net.unicon</groupId>
5+
<artifactId>java-ldap-keystore-test</artifactId>
6+
<version>0.0.1</version>
7+
<name>Java LDAP Keystore Test Utility</name>
8+
<packaging>jar</packaging>
9+
<description>Java CLI utility to execute LDAP connections.</description>
10+
<dependencies>
11+
<dependency>
12+
<groupId>org.springframework.boot</groupId>
13+
<artifactId>spring-boot-starter</artifactId>
14+
<version>1.4.3.RELEASE</version>
15+
</dependency>
16+
</dependencies>
17+
<build>
18+
<plugins>
19+
<plugin>
20+
<groupId>org.springframework.boot</groupId>
21+
<artifactId>spring-boot-maven-plugin</artifactId>
22+
<version>1.4.3.RELEASE</version>
23+
<executions>
24+
<execution>
25+
<goals>
26+
<goal>repackage</goal>
27+
</goals>
28+
</execution>
29+
</executions>
30+
</plugin>
31+
<plugin>
32+
<groupId>org.apache.maven.plugins</groupId>
33+
<artifactId>maven-compiler-plugin</artifactId>
34+
<configuration>
35+
<source>1.8</source>
36+
<target>1.8</target>
37+
</configuration>
38+
</plugin>
39+
</plugins>
40+
</build>
41+
</project>

0 commit comments

Comments
 (0)