Add security starter pom
This commit is contained in:
		
							parent
							
								
									5ce220b51c
								
							
						
					
					
						commit
						002c4e0ff4
					
				|  | @ -21,6 +21,7 @@ | |||
| 		<module>spring-bootstrap-batch-starter</module> | ||||
| 		<module>spring-bootstrap-integration-starter</module> | ||||
| 		<module>spring-bootstrap-jpa-starter</module> | ||||
| 		<module>spring-bootstrap-security-starter</module> | ||||
| 		<module>spring-bootstrap-tomcat-starter</module> | ||||
| 		<module>spring-bootstrap-web-starter</module> | ||||
| 	</modules> | ||||
|  | @ -71,6 +72,11 @@ | |||
| 				<artifactId>spring-bootstrap-integration-starter</artifactId> | ||||
| 				<version>${spring.bootstrap.version}</version> | ||||
| 			</dependency> | ||||
| 			<dependency> | ||||
| 				<groupId>org.springframework.bootstrap</groupId> | ||||
| 				<artifactId>spring-bootstrap-security-starter</artifactId> | ||||
| 				<version>${spring.bootstrap.version}</version> | ||||
| 			</dependency> | ||||
| 		</dependencies> | ||||
| 	</dependencyManagement> | ||||
| 	<dependencies> | ||||
|  |  | |||
|  | @ -0,0 +1,23 @@ | |||
| <?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> | ||||
| 	<parent> | ||||
| 		<groupId>org.springframework.bootstrap</groupId> | ||||
| 		<artifactId>spring-bootstrap-starters</artifactId> | ||||
| 		<version>0.5.0.BUILD-SNAPSHOT</version> | ||||
| 	</parent> | ||||
| 	<artifactId>spring-bootstrap-security-starter</artifactId> | ||||
| 	<packaging>jar</packaging> | ||||
| 	<dependencies> | ||||
| 		<dependency> | ||||
| 			<groupId>${project.groupId}</groupId> | ||||
| 			<artifactId>spring-bootstrap-starter</artifactId> | ||||
| 			<version>${project.version}</version> | ||||
| 		</dependency> | ||||
| 		<dependency> | ||||
| 			<groupId>org.springframework.security</groupId> | ||||
| 			<artifactId>spring-security-javaconfig</artifactId> | ||||
| 		</dependency> | ||||
| 	</dependencies> | ||||
| </project> | ||||
		Loading…
	
		Reference in New Issue