-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
54 lines (48 loc) · 1.44 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
buildscript {
repositories {
maven {
url "http://repository.jboss.org/nexus/content/groups/public/"
}
}
dependencies {
classpath 'org.hibernate.build.gradle:gradle-maven-publish-auth:2.0.1'
}
}
plugins {
id "net.linguica.maven-settings" version "0.5"
id 'nebula.lint' version '7.4.0'
}
ext {
junit_version = '4.12'
resteasy_version = '3.0.19.Final'
org_springframework_version = '4.3.7.RELEASE'
org_postgresql_driver_version = '9.4-1200-jdbc41'
org_liquibase_version = '1.2.0'
org_hibernate_hibernate_core_version = '5.1.4.Final'
org_slf4j_version = '1.7.24'
javax_ws_rs_version = '2.0.1'
mainGroup = 'ru.inovus.util'
}
allprojects {
version '1.1.8'
apply plugin: 'java'
sourceCompatibility = JavaVersion.VERSION_1_8
// Set visible Maven's configurations for Gradle from settings.xml
apply plugin: 'net.linguica.maven-settings'
// For publishing (deploy) to local and remote repositories
apply plugin: 'maven'
apply plugin: 'maven-publish'
apply plugin: 'maven-publish-auth'
/* // For Gradle scripts' maintenance and dependencies' cleaner
apply plugin: 'nebula.lint'
gradleLint.rules = ['all-dependency']
*/
compileJava.options.encoding = 'UTF-8'
repositories {
mavenCentral()
mavenLocal()
maven {
url "http://repository.jboss.org/nexus/content/groups/public/"
}
}
}