Subversion Repositories SmartDukaan

Rev

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

Rev 28389 Rev 29338
Line 21... Line 21...
21
sourceCompatibility = 1.8
21
sourceCompatibility = 1.8
22
 
22
 
23
repositories {
23
repositories {
24
        
24
        
25
     maven { url "https://repo.maven.apache.org/maven2" }
25
     maven { url "https://repo.maven.apache.org/maven2" }
-
 
26
     maven { url 'https://jitpack.io' }
26
     mavenLocal()
27
     mavenLocal()
27
}
28
}
28
 
29
 
29
task copyEnv{
30
task copyEnv{
30
	Set environments = ["dev", "staging", "prod"]
31
	Set environments = ["dev", "staging", "prod"]
Line 70... Line 71...
70
   	compile 'com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.9.6:'
71
   	compile 'com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.9.6:'
71
	compile 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.6'
72
	compile 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.6'
72
	compile group: 'org.jsoup', name: 'jsoup', version: '1.11.3'
73
	compile group: 'org.jsoup', name: 'jsoup', version: '1.11.3'
73
	compile group: 'org.seleniumhq.selenium', name: 'selenium-java', version: '2.41.0'
74
	compile group: 'org.seleniumhq.selenium', name: 'selenium-java', version: '2.41.0'
74
	implementation 'org.jsoup:jsoup:1.11.3'
75
	implementation 'org.jsoup:jsoup:1.11.3'
-
 
76
	implementation 'com.github.2captcha:2captcha-java:1.0.1'
-
 
77
	implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.3.70'
-
 
78
	implementation 'com.github.Cloudmersive:Cloudmersive.APIClient.Java:v4.25'
-
 
79
	implementation 'com.cloudconvert:cloudconvert-java:1.0.7'
-
 
80
	implementation 'org.apache.httpcomponents:httpclient:4.5.13'
-
 
81
	
75
	
82
	
76
	
83
	
77
}
84
}
78
 
85
 
79
defaultTasks 'copyEnv', 'build'
86
defaultTasks 'copyEnv', 'build'
80
87