File: build.gradle

package info (click to toggle)
libmbassador-java 1.3.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 788 kB
  • sloc: java: 5,488; xml: 274; sh: 12; makefile: 5
file content (27 lines) | stat: -rw-r--r-- 560 bytes parent folder | download | duplicates (2)
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
apply plugin: 'java'
apply plugin: 'war' // needed for providedCompile

group="org.mbassy"
version="1.2.5-SNAPSHOT"



repositories {
    jcenter()
    mavenCentral()
}

dependencies {

    testCompile "junit:junit:4.12"
    testCompile 'org.assertj:assertj-core:3.3.0'
    testCompile 'org.mockito:mockito-core:1.10.19'

    testCompile 'org.slf4j:slf4j-api:1.7.5'


    testCompile 'org.slf4j:slf4j-log4j12:1.7.5'
    providedCompile 'javax.el:javax.el-api:2.2.5'
    runtime 'de.odysseus.juel:juel-impl:2.2.7'
    runtime 'de.odysseus.juel:juel-spi:2.2.7'
}