- Added "name" in pom.xml whereever it was missing and aligned the present ones with the artifactid and foldername
		
			
				
	
	
		
			72 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			72 lines
		
	
	
		
			2.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-custom-no-store</artifactId>
 | |
|     <name>app-auth-custom-no-store</name>
 | |
|     <packaging>war</packaging>
 | |
| 
 | |
|     <parent>
 | |
|         <groupId>com.baeldung</groupId>
 | |
|         <artifactId>java-ee-8-security-api</artifactId>
 | |
|         <version>1.0-SNAPSHOT</version>
 | |
|     </parent>
 | |
| 
 | |
|     <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>
 | |
|             <plugin>
 | |
|                 <groupId>org.apache.maven.plugins</groupId>
 | |
|                 <artifactId>maven-dependency-plugin</artifactId>
 | |
|                 <executions>
 | |
|                     <execution>
 | |
|                         <id>copy</id>
 | |
|                         <phase>package</phase>
 | |
|                         <goals>
 | |
|                             <goal>copy</goal>
 | |
|                         </goals>
 | |
|                     </execution>
 | |
|                 </executions>
 | |
|                 <configuration>
 | |
|                     <artifactItems>
 | |
|                         <artifactItem>
 | |
|                             <groupId>com.h2database</groupId>
 | |
|                             <artifactId>h2</artifactId>
 | |
|                             <version>${h2-version}</version>
 | |
|                             <type>jar</type>
 | |
|                             <outputDirectory>
 | |
|                                 ${project.build.directory}/liberty/wlp/usr/servers/defaultServer/lib/global
 | |
|                             </outputDirectory>
 | |
|                         </artifactItem>
 | |
|                     </artifactItems>
 | |
|                 </configuration>
 | |
|             </plugin>
 | |
|         </plugins>
 | |
|     </build>
 | |
| 
 | |
|     <properties>
 | |
|         <h2-version>1.4.197</h2-version>
 | |
|     </properties>
 | |
| </project>
 |