Last active
January 3, 2016 22:19
Revisions
-
vicziani revised this gist
Nov 2, 2015 . No changes.There are no files selected for viewing
-
vicziani renamed this gist
Jan 20, 2014 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
vicziani revised this gist
Jan 20, 2014 . No changes.There are no files selected for viewing
-
vicziani created this gist
Jan 20, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,161 @@ project { modelVersion '4.0.0' groupId 'jtechlog.jtechlog-spring-security' artifactId 'jtechlog-spring-security' version '1.0-SNAPSHOT' packaging 'war' name '${project.artifactId}' url 'http://jtechlog.blogspot.com' inceptionYear '2011 - 2014' developers { developer { id 'vicziani' name 'Viczián István' email 'viczian.istvan a gmail-en' roles { role 'developer' } } } properties { 'slf4j.version' '1.7.5' 'spring.version' '3.2.6.RELEASE' 'spring.security.version' '3.2.0.RELEASE' 'project.build.sourceEncoding' 'UTF-8' } dependencies { dependency { groupId 'javax.servlet.jsp' artifactId 'javax.servlet.jsp-api' version '2.3.1' } dependency { groupId 'javax.servlet' artifactId 'jstl' version '1.2' } dependency { groupId 'taglibs' artifactId 'standard' version '1.1.2' } dependency { groupId 'org.springframework' artifactId 'spring-context' version '${spring.version}' } dependency { groupId 'org.springframework' artifactId 'spring-webmvc' version '${spring.version}' } dependency { groupId 'org.springframework' artifactId 'spring-web' version '${spring.version}' } dependency { groupId 'org.springframework' artifactId 'spring-orm' version '${spring.version}' } dependency { groupId 'org.springframework' artifactId 'spring-beans' version '${spring.version}' } dependency { groupId 'org.springframework' artifactId 'spring-tx' version '${spring.version}' } dependency { groupId 'org.springframework.security' artifactId 'spring-security-core' version '${spring.security.version}' } dependency { groupId 'org.springframework.security' artifactId 'spring-security-config' version '${spring.security.version}' } dependency { groupId 'org.springframework.security' artifactId 'spring-security-web' version '${spring.security.version}' } dependency { groupId 'org.springframework.security' artifactId 'spring-security-taglibs' version '${spring.security.version}' } dependency { groupId 'commons-codec' artifactId 'commons-codec' version '1.5' } dependency { groupId 'org.hibernate' artifactId 'hibernate-entitymanager' version '4.3.0.Final' } dependency { groupId 'org.hibernate.javax.persistence' artifactId 'hibernate-jpa-2.1-api' version '1.0.0.Final' } dependency { groupId 'org.hsqldb' artifactId 'hsqldb' version '2.3.1' } dependency { groupId 'org.slf4j' artifactId 'slf4j-api' version '${slf4j.version}' } dependency { groupId 'org.slf4j' artifactId 'slf4j-simple' version '${slf4j.version}' } dependency { groupId 'junit' artifactId 'junit' version '4.11' scope 'test' } } build { plugins { plugin { artifactId 'maven-compiler-plugin' version '3.1' configuration { source '1.7' target '1.7' encoding 'UTF-8' } } plugin { artifactId 'maven-resources-plugin' version '2.6' configuration { encoding 'UTF-8' } } plugin { artifactId 'maven-war-plugin' version '2.4' configuration { failOnMissingWebXml 'false' } } plugin { groupId 'org.eclipse.jetty' artifactId 'jetty-maven-plugin' version '9.1.0.v20131115' } } } }