-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathbuild.gradle
More file actions
50 lines (41 loc) · 1.04 KB
/
build.gradle
File metadata and controls
50 lines (41 loc) · 1.04 KB
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
plugins {
id "scala"
id "maven-publish"
id "distribution"
id 'java-library'
}
subprojects {
apply plugin: 'java-library'
apply plugin: 'maven-publish'
apply plugin: 'scala'
group = 'org.mule.weave.native'
version = nativeVersion
// compileScala {
// targetCompatibility = "24"
// sourceCompatibility = "11"
// }
compileJava {
sourceCompatibility = '11'
targetCompatibility = '11'
}
repositories {
// mavenLocal()
mavenCentral()
maven {
name = "mule-releases"
url = "https://repository.mulesoft.org/nexus/content/repositories/releases/"
}
maven {
name = "mule-snapshots"
url = "https://repository.mulesoft.org/nexus/content/repositories/snapshots/"
}
maven {
name = "jitpack.io"
url = "https://jitpack.io"
}
gradlePluginPortal()
}
dependencies {
implementation "org.scala-lang:scala-library:${scalaVersion}"
}
}