-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
74 lines (67 loc) · 2.68 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
group 'ua.pp.fairwind.favorit'
version '1.0-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'war'
//apply plugin: 'idea'
apply plugin: 'io.spring.dependency-management'
//apply plugin: 'org.akhikhl.gretty'
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
compile 'javax.servlet:javax.servlet-api'
compile 'javax.servlet:jstl'
//SPIRNG основная + дополнения для ВЕБ
compile 'org.springframework:spring-core'
compile 'org.springframework:spring-webmvc'
//SPIRNG безопасность
compile 'org.springframework.security:spring-security-core'
//файл исправляет ошибку Unable to locate Spring NamespaceHandler for XML schema namespace [http://www.springframework.org/schema/security]
compile 'org.springframework.security:spring-security-config'
compile 'org.springframework.security:spring-security-web'
compile 'org.springframework.security:spring-security-taglibs'
//SPIRNG JPS+HIBERNATE (связка для работы с БД)
//compile 'org.springframework.integration:spring-integration-jpa'
compile 'org.springframework.data:spring-data-jpa'
compile 'com.mysema.querydsl:querydsl-core'
compile 'com.mysema.querydsl:querydsl-jpa'
compile 'org.hibernate:hibernate-core'
compile 'org.hibernate:hibernate-entitymanager'
//ОБРАБОТЧИКИ ОТВЕЧАЮЩТЕ ЗА ПРЕОБРАЗОВАНИЕ ОБЪЕКТОВ В JSON (управление аннотациями)
compile 'com.fasterxml.jackson.core:jackson-annotations'
compile 'com.fasterxml.jackson.core:jackson-core'
compile 'com.fasterxml.jackson.core:jackson-databind'
//МАППЕР ДЛЯ ПЕРЕДАЧИ HIBERNATE СУЩНОСТЕЙ С "ЛИНИВЫМИ" ПОЛЯМИ
compile 'com.fasterxml.jackson.datatype:jackson-datatype-hibernate4'
compile 'mysql:mysql-connector-java'
//ОБРАБОТЧИК ЗАГРУЗКИ ФАЙЛОВ
compile 'commons-fileupload:commons-fileupload'
//ПУЛЫ СОЕДИНЕНИЙ
compile 'commons-dbcp:commons-dbcp'
compile 'commons-logging:commons-logging'
}
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'io.spring.gradle:dependency-management-plugin:0.5.1.RELEASE'
//classpath 'org.akhikhl.gretty:gretty:+'
}
}
/*
gretty {
port = 8080
contextPath = 'spring4'
servletContainer = 'jetty9' //tomcat7 or tomcat8
}
/**/
dependencyManagement {
imports {
mavenBom 'io.spring.platform:platform-bom:1.1.3.RELEASE'
}
}