51 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
		
		
			
		
	
	
			51 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
|  | <?xml version="1.0" encoding="UTF-8"?> | ||
|  | <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> | ||
|  | 
 | ||
|  |     <artifactId>app-auth-form-store-ldap</artifactId> | ||
|  |     <packaging>war</packaging> | ||
|  | 
 | ||
|  |     <parent> | ||
|  |         <groupId>com.baeldung</groupId> | ||
|  |         <artifactId>java-ee-8-security-api</artifactId> | ||
|  |         <version>1.0-SNAPSHOT</version> | ||
|  |     </parent> | ||
|  | 
 | ||
|  |     <dependencies> | ||
|  |         <dependency> | ||
|  |             <groupId>com.unboundid</groupId> | ||
|  |             <artifactId>unboundid-ldapsdk</artifactId> | ||
|  |             <version>4.0.4</version> | ||
|  |         </dependency> | ||
|  |     </dependencies> | ||
|  | 
 | ||
|  |     <build> | ||
|  |         <plugins> | ||
|  |             <plugin> | ||
|  |                 <groupId>net.wasdev.wlp.maven.plugins</groupId> | ||
|  |                 <artifactId>liberty-maven-plugin</artifactId> | ||
|  |                 <executions> | ||
|  |                     <execution> | ||
|  |                         <id>install-server</id> | ||
|  |                         <phase>prepare-package</phase> | ||
|  |                         <goals> | ||
|  |                             <goal>install-server</goal> | ||
|  |                             <goal>create-server</goal> | ||
|  |                             <goal>install-feature</goal> | ||
|  |                         </goals> | ||
|  |                     </execution> | ||
|  |                     <execution> | ||
|  |                         <id>install-apps</id> | ||
|  |                         <phase>package</phase> | ||
|  |                         <goals> | ||
|  |                             <goal>install-apps</goal> | ||
|  |                         </goals> | ||
|  |                     </execution> | ||
|  |                 </executions> | ||
|  |             </plugin> | ||
|  |         </plugins> | ||
|  |     </build> | ||
|  | </project> |