-
Notifications
You must be signed in to change notification settings - Fork 6
/
build.gradle
66 lines (56 loc) · 2.19 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
plugins {
id 'java'
id 'eclipse'
id 'org.springframework.boot' version '3.4.0'
}
apply plugin: 'java'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
description = 'SolarJobs'
version = '2.21.0'
base {
archivesName = 'solarjobs'
}
configurations {
all*.exclude group: 'commons-logging'
all*.exclude group: 'log4j', module: 'log4j'
all*.exclude group: 'org.slf4j', module: 'slf4j-log4j12'
}
dependencies {
implementation project(':solarnet-cloud-integrations')
implementation project(':solarnet-common')
implementation project(':solarnet-datum')
implementation project(':solarnet-instructor')
implementation project(':solarnet-ocpp')
implementation project(':solarnet-user')
implementation project(':solarnet-user-billing')
implementation project(':solarnet-user-datum')
implementation project(':solarnet-user-ocpp')
// Spring
implementation 'org.springframework.boot:spring-boot-starter'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'org.springframework.boot:spring-boot-starter-oauth2-client'
implementation 'org.springframework.boot:spring-boot-starter-mail'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation "org.mybatis.spring.boot:mybatis-spring-boot-starter:${myBatisStarterVersion}"
// Utils
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-cbor'
implementation 'javax.cache:cache-api'
implementation "net.sf.supercsv:super-csv:${superCsvVersion}"
implementation 'org.apache.httpcomponents.client5:httpclient5'
implementation 'org.ehcache:ehcache'
implementation "org.tukaani:xz:${xzVersion}"
// SolarNetwork
implementation "net.solarnetwork.common:net.solarnetwork.common.mqtt.netty:${snCommonMqttNettyVersion}"
// Testing
testImplementation project(':solarnet-common-test')
testImplementation "org.mybatis.spring.boot:mybatis-spring-boot-starter-test:${myBatisStarterVersion}"
}
bootJar {
manifest {
attributes 'Implementation-Title': 'SolarJobs',
'Implementation-Version': archiveVersion
}
}