Verwaltung von LDAP Accounts und Gruppen
Peter Hormanns
2021-12-03 55cce4532fccd5297987323de27d137a0b1ea3e2
commit | author | age
90d4d7 1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
PH 2     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3     
4     <modelVersion>4.0.0</modelVersion>
5     <groupId>de.jalin.ldapadmin</groupId>
6     <artifactId>ldapadmin</artifactId>
7     <packaging>war</packaging>
8f0934 8     <version>1.0.1</version>
90d4d7 9     <name>LDAP Admin Webapp</name>
PH 10     
11     <properties>
12         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
13         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
14         <env>dev</env>
15     </properties>
16
17     <profiles>
18         <profile>
19             <id>dev</id>
20             <properties>
21                 <env>dev</env>
22             </properties>
23         </profile>
24         <profile>
25             <id>test</id>
26             <properties>
27                 <env>test</env>
28             </properties>
29         </profile>
30         <profile>
31             <id>prod</id>
32             <properties>
33                 <env>prod</env>
34             </properties>
35         </profile>
36     </profiles>
37     <dependencies>
38         <dependency>
39             <groupId>javax.servlet</groupId>
40             <artifactId>javax.servlet-api</artifactId>
41             <version>4.0.1</version>
42             <scope>provided</scope>
43         </dependency>
44         <dependency>
45             <groupId>javax.servlet.jsp</groupId>
46             <artifactId>javax.servlet.jsp-api</artifactId>
47             <version>2.3.3</version>
48             <scope>provided</scope>
49         </dependency>
50         <dependency>
2e5e7d 51             <groupId>javax.servlet</groupId>
PH 52             <artifactId>jstl</artifactId>
53             <version>1.2</version>
54         </dependency>
55         <dependency>
90d4d7 56             <groupId>commons-net</groupId>
PH 57             <artifactId>commons-net</artifactId>
8f0934 58             <version>3.8.0</version>
90d4d7 59         </dependency>
ef095b 60         <dependency>
90d4d7 61             <groupId>org.webjars</groupId>
PH 62             <artifactId>bootstrap</artifactId>
63             <version>3.4.1</version>
64         </dependency>
65         <dependency>
66             <groupId>org.apache.directory.server</groupId>
67             <artifactId>apacheds-service</artifactId>
8f0934 68             <version>2.0.0.AM26</version>
90d4d7 69         </dependency>
PH 70         <dependency>
71             <groupId>junit</groupId>
72             <artifactId>junit</artifactId>
8f0934 73         <version>4.13.2</version>
90d4d7 74             <scope>test</scope>
PH 75         </dependency>
76     </dependencies>
77
78     <build>
79         <resources>
80             <resource>
81                 <directory>src/main/resources</directory>
82                 <filtering>false</filtering>
83             </resource>
84         </resources>
85         <plugins>
86             <plugin>
87                 <groupId>org.apache.maven.plugins</groupId>
88                 <artifactId>maven-war-plugin</artifactId>
89                 <version>3.2.3</version>
90                 <configuration>
d9ee90 91                         <archiveClasses>false</archiveClasses>
90d4d7 92                 </configuration>
PH 93             </plugin>
94             <plugin>
95                 <groupId>org.eclipse.jetty</groupId>
96                 <artifactId>jetty-maven-plugin</artifactId>
97                 <version>9.4.19.v20190610</version>
98                 <configuration>
99                     <jettyXml>etc/jetty.xml</jettyXml>
100                     <scanIntervalSeconds>10</scanIntervalSeconds>
101                     <webApp>
102                         <contextPath>/</contextPath>
103                     </webApp>
104                 </configuration>
105             </plugin>
106             <plugin>
107                 <groupId>org.apache.maven.plugins</groupId>
108                 <artifactId>maven-compiler-plugin</artifactId>
109                 <version>3.8.1</version>
110                 <configuration>
111                     <source>1.8</source>
112                     <target>1.8</target>
113                     <compilerArgument></compilerArgument>
114                 </configuration>
115             </plugin>
116         </plugins>
117         <finalName>ldapadmin</finalName>
118     </build>
119
120 </project>