Subversion Repositories SmartDukaan

Rev

Rev 24434 | Rev 26215 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 24434 Rev 25750
Line 8... Line 8...
8
	dependencies {
8
	dependencies {
9
		classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
9
		classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
10
	}
10
	}
11
}
11
}
12
 
12
 
-
 
13
 
13
apply plugin: 'java'
14
apply plugin: 'java'
14
apply plugin: 'eclipse'
15
apply plugin: 'eclipse'
15
apply plugin: 'org.springframework.boot'
16
apply plugin: 'org.springframework.boot'
16
apply plugin: 'io.spring.dependency-management'
17
apply plugin: 'io.spring.dependency-management'
17
 
18
 
Line 47... Line 48...
47
	logger.info("Build is being build by "+environment)
48
	logger.info("Build is being build by "+environment)
48
}
49
}
49
 
50
 
50
 
51
 
51
dependencies {
52
dependencies {
-
 
53
	compile group: 'org.jsoup', name: 'jsoup', version: '1.7.2'
52
	compile('org.springframework.boot:spring-boot-starter') {
54
	compile('org.springframework.boot:spring-boot-starter') {
53
		exclude (module: 'logback-classic')
55
		exclude (module: 'logback-classic')
54
		exclude (module: 'spring-boot-starter-logging')
56
		exclude (module: 'spring-boot-starter-logging')
55
	}
57
	}
56
	compile 'org.springframework.boot:spring-boot-starter-log4j2'
58
	compile 'org.springframework.boot:spring-boot-starter-log4j2'
Line 61... Line 63...
61
    compile project (':profitmandi-common')
63
    compile project (':profitmandi-common')
62
    compile project (':profitmandi-dao')
64
    compile project (':profitmandi-dao')
63
    compile 'com.fasterxml.jackson.module:jackson-module-parameter-names:2.9.6'
65
    compile 'com.fasterxml.jackson.module:jackson-module-parameter-names:2.9.6'
64
   	compile 'com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.9.6:'
66
   	compile 'com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.9.6:'
65
	compile 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.6'
67
	compile 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.6'
-
 
68
	compile group: 'org.jsoup', name: 'jsoup', version: '1.11.3'
-
 
69
	compile group: 'org.seleniumhq.selenium', name: 'selenium-java', version: '2.41.0'
-
 
70
	
-
 
71
	
66
}
72
}
67
 
73
 
68
defaultTasks 'copyEnv', 'build'
74
defaultTasks 'copyEnv', 'build'
69
75