Subversion Repositories SmartDukaan

Rev

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

Rev 34101 Rev 34554
Line 44... Line 44...
44
        from "src/main/resources/META-INF"
44
        from "src/main/resources/META-INF"
45
        into "src/main/resources/META-INF"
45
        into "src/main/resources/META-INF"
46
        include("${environment}.properties")
46
        include("${environment}.properties")
47
        rename "${environment}.properties", "env.properties"
47
        rename "${environment}.properties", "env.properties"
48
    }
48
    }
49
    logger.info("Build is being build by " + environment)
49
    logger.info("Build is being built by " + environment)
50
}
50
}
51
 
51
 
52
 
52
 
53
dependencies {
53
dependencies {
54
    compile group: 'org.jsoup', name: 'jsoup', version: '1.7.2'
54
    compile group: 'org.jsoup', name: 'jsoup', version: '1.7.2'
55
    compile('org.springframework.boot:spring-boot-starter') {
55
    compile('org.springframework.boot:spring-boot-starter') {
56
        exclude(module: 'logback-classic')
56
        exclude(module: 'logback-classic')
57
        exclude(module: 'spring-boot-starter-logging')
57
        exclude(module: 'spring-boot-starter-logging')
58
    }
58
    }
59
    //implementation group: 'org.springframework', name: 'spring-context', version: '4.3.6.RELEASE'
-
 
60
    implementation group: 'org.springframework', name: 'spring-context-support', version: '4.3.6.RELEASE'
59
    implementation group: 'org.springframework', name: 'spring-context-support', version: '4.3.6.RELEASE'
61
 
60
 
62
    compile group: 'org.apache.velocity', name: 'velocity', version: '1.7'
61
    compile group: 'org.apache.velocity', name: 'velocity', version: '1.7'
63
    compile project(':profitmandi-common')
62
    compile project(':profitmandi-common')
64
    compile project(':profitmandi-dao')
63
    compile project(':profitmandi-dao')
Line 81... Line 80...
81
        exclude group: 'org.apache.httpcomponents', module: 'httpclient'
80
        exclude group: 'org.apache.httpcomponents', module: 'httpclient'
82
        exclude group: 'com.google.guava', module: 'guava'
81
        exclude group: 'com.google.guava', module: 'guava'
83
    }
82
    }
84
 
83
 
85
 
84
 
-
 
85
    implementation('org.springframework.boot:spring-boot-starter-actuator') {
-
 
86
        exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging'
-
 
87
    }
-
 
88
 
-
 
89
    implementation('io.micrometer:micrometer-core') {
-
 
90
        exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging'
-
 
91
    }
-
 
92
 
-
 
93
    implementation('io.micrometer:micrometer-registry-prometheus') {
-
 
94
        exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging'
-
 
95
    }
-
 
96
 
-
 
97
    implementation 'org.springframework.boot:spring-boot-starter-log4j2'
-
 
98
 
-
 
99
    implementation('org.springframework.boot:spring-boot-starter-web') {
-
 
100
        exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging'
-
 
101
    }
-
 
102
    implementation 'org.aspectj:aspectjweaver'
-
 
103
    implementation ('org.springframework.boot:spring-boot-starter-security'){
-
 
104
        exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging'
-
 
105
    }
-
 
106
 
86
}
107
}
87
 
108
 
88
defaultTasks 'copyEnv', 'build'
109
defaultTasks 'copyEnv', 'build'
89
110