-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
34 lines (29 loc) · 1003 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
buildscript {
repositories {
maven { url "https://oss.sonatype.org/content/repositories/snapshots/"}
maven { url "https://oss.sonatype.org/content/repositories/releases" }
}
dependencies {
classpath 'com.barrybecker4:bb4-gradle:1.7'
}
}
plugins {
id "com.github.maiflai.scalatest" version "0.31" // needed to run scala tests
}
description = 'Library for parsing mathematical expressions'
group = 'com.barrybecker4'
version = '1.7'
ext {
archivesBaseName = 'bb4-expression'
mainClass = 'com.barrybecker4.expression.ExpressionDemo'
}
apply from: project.buildscript.classLoader.getResource('bb4.gradle').toURI()
task runExpressionDemo(type: JavaExec, dependsOn: classes) {
group = 'application'
mainClassName = 'com.barrybecker4.expression.ExpressionDemo'
classpath = sourceSets.main.runtimeClasspath
standardInput = System.in
}
dependencies {
}
apply from: project.buildscript.classLoader.getResource('bb4-publish.gradle').toURI()