* created multi-module project from spring-security-mvc-boot * Added JDBC Authentication application to spring-security-mvc-boot-default * Added JDBC Authentication application to spring-security-mvc-boot-mysql * Added JDBC Authentication application to spring-security-mvc-boot-postgre * adding new modules to parent spring-security-mvc-boot module, reformatting sql scripts, and added form fields to H2 LiveTest
		
			
				
	
	
		
			43 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.9 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>
 | 
						|
    <groupId>com.baeldung</groupId>
 | 
						|
    <artifactId>spring-security-mvc-boot-default</artifactId>
 | 
						|
    <version>0.0.1-SNAPSHOT</version>
 | 
						|
    <name>spring-security-mvc-boot-default</name>
 | 
						|
    <packaging>jar</packaging>
 | 
						|
    <description>Spring Security MVC Boot</description>
 | 
						|
 | 
						|
    <parent>
 | 
						|
        <artifactId>spring-security-mvc-boot</artifactId>
 | 
						|
        <groupId>com.baeldung</groupId>
 | 
						|
        <version>0.0.1-SNAPSHOT</version>
 | 
						|
        <relativePath>../</relativePath>
 | 
						|
    </parent>
 | 
						|
 | 
						|
    <dependencies>
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.h2database</groupId>
 | 
						|
            <artifactId>h2</artifactId>
 | 
						|
        </dependency>
 | 
						|
    </dependencies>
 | 
						|
 | 
						|
    <properties>
 | 
						|
        <start-class>org.baeldung.custom.Application</start-class>
 | 
						|
        <!--If you want to run the example with the voters comment the tag 
 | 
						|
            above and uncomment the one below -->
 | 
						|
        <!--<start-class>org.baeldung.voter.VoterApplication</start-class> -->
 | 
						|
        <!--If you want to run the example with the multiple logins, comment 
 | 
						|
            the tag above and uncomment the one below -->
 | 
						|
        <!--<start-class>org.baeldung.multiplelogin.MultipleLoginApplication</start-class> -->
 | 
						|
        <!--If you want to run the example with the multiple http elements, 
 | 
						|
            comment the tag above and uncomment the one below -->
 | 
						|
        <!--<start-class>org.baeldung.multipleentrypoints.MultipleEntryPointsApplication</start-class>-->
 | 
						|
        <!--If you want to run the example with the Https enabled endpoints,
 | 
						|
            comment the tag above and uncomment the one below -->
 | 
						|
       <!-- <start-class>org.baeldung.ssl.HttpsEnabledApplication</start-class> -->
 | 
						|
    </properties>
 | 
						|
 | 
						|
</project>
 |