Last active
January 3, 2016 22:19
-
-
Save vicziani/8527744 to your computer and use it in GitHub Desktop.
Próbaképp átfordítottam tesla-polyglot-tal egy pom.xml-em Groovy-ba.
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 characters
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' | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment