-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle
56 lines (42 loc) · 1.14 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
//buildscript { // make the frege plugin available in our build
// repositories {
// mavenLocal() // if you have the plugin installed locally, this is enough
// mavenCentral()
// maven {
// url = "https://oss.sonatype.org/content/groups/public"
// }
// }
// dependencies {
// classpath 'org.frege-lang:frege-gradle-plugin:0.4.2-SNAPSHOT', {
// exclude module:'frege-native-gen'
// exclude module:'frege-repl-core'
// }
// }
//}
//apply plugin: 'frege'
// for fetching the plugin from gradle plugin portal
plugins {
id "org.frege-lang" version "0.7"
}
apply plugin: 'application'
mainClassName = 'org.frege.Application'
//frege {
// mainModule = 'org.frege.Application'
//}
sourceCompatibility = 1.8
targetCompatibility = 1.8
ext {
sonatypeUrl = "https://oss.sonatype.org/content/groups/public"
}
repositories {
mavenLocal()
jcenter()
maven {
url = sonatypeUrl
}
}
dependencies {
//frege "org.frege-lang:frege:3.23.288-gaa3af0c"
compile "org.frege-lang:fregefx:0.2.0"
compile "org.frege-lang:frege-repl-core:1.4-SNAPSHOT"
}