forked from apache/openwhisk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle
More file actions
30 lines (24 loc) · 794 Bytes
/
settings.gradle
File metadata and controls
30 lines (24 loc) · 794 Bytes
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
include 'common:scala'
include 'core:controller'
include 'core:invoker'
include 'actionRuntimes:nodejs6Action'
include 'actionRuntimes:nodejs8Action'
include 'actionRuntimes:actionProxy'
include 'actionRuntimes:pythonAction'
include 'actionRuntimes:python2Action'
include 'actionRuntimes:swift3.1.1Action'
include 'actionRuntimes:javaAction'
include 'actionRuntimes:php7.1Action'
include 'sdk:docker'
include 'tests'
include 'tests:dat:blackbox:badaction'
include 'tests:dat:blackbox:badproxy'
rootProject.name = 'openwhisk'
gradle.ext.scala = [
version: '2.11.11',
compileFlags: ['-feature', '-unchecked', '-deprecation', '-Xfatal-warnings', '-Ywarn-unused-import']
]
gradle.ext.scalafmt = [
version: '1.5.0',
config: new File(rootProject.projectDir, '.scalafmt.conf')
]