forked from Azure-Samples/azure-functions-samples-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
35 lines (29 loc) · 837 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
plugins {
id "com.microsoft.azure.azurefunctions" version "1.4.0"
}
apply plugin: 'java'
apply plugin: "com.microsoft.azure.azurefunctions"
group 'com.functions'
version '1.0-SNAPSHOT'
dependencies {
implementation 'com.microsoft.azure.functions:azure-functions-java-library:1.3.1'
testImplementation 'org.junit.jupiter:junit-jupiter:5.6.2'
testImplementation 'org.mockito:mockito-core:3.3.3'
}
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
compileJava.options.encoding = 'UTF-8'
repositories {
mavenCentral()
}
azurefunctions {
resourceGroup = 'java-functions-group'
appName = 'azure-functions-sample'
pricingTier = 'Consumption'
region = 'westus'
runtime {
os = 'windows'
javaVersion = '8'
}
localDebug = "transport=dt_socket,server=y,suspend=n,address=5005"
}