-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
36 lines (30 loc) · 915 Bytes
/
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
apply plugin: "java-library"
apply plugin: "java-test-fixtures"
ext {
//springboot = "true"
}
dependencies {
api projects.dictionaryJasync
api projects.userJasync
api projects.securityWeb
api projects.mail
testFixturesApi projects.integrationTestWeb
testFixturesApi testFixtures(projects.mail)
testFixturesApi testFixtures(projects.userJasync)
}
/*
afterEvaluate {
tasks.bootRun {
def smtpUser = System.getProperty("javax.mail.username")
def smtpPassword = System.getProperty("javax.mail.password")
def smtpFrom = System.getProperty("javax.mail.smtp.from")
main = 'com.ss.jcrm.registration.web.RegistrationApplication'
jvmArgs = [
"-Dserver.port=8091",
"-Djavax.mail.username=$smtpUser",
"-Djavax.mail.password=$smtpPassword",
"-Djavax.mail.smtp.from=$smtpFrom"
]
}
}
*/