File: build.gradle

package info (click to toggle)
perfmark-java 0.21.0%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 860 kB
  • sloc: java: 4,963; xml: 13; makefile: 5
file content (39 lines) | stat: -rw-r--r-- 939 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
28
29
30
31
32
33
34
35
36
37
38
39
buildscript {
    repositories {
        mavenLocal()
        maven { url "https://plugins.gradle.org/m2/" }
        jcenter()
    }
}

subprojects {
    apply plugin: "java"
    apply plugin: 'maven-publish'
    apply plugin: "idea"
    apply plugin: "jacoco"
    apply plugin: "signing"

    repositories {
        maven {
            url "https://maven-central.storage-download.googleapis.com/repos/central/data/" }
        mavenLocal()
    }
    
    jacoco { toolVersion = "0.8.2" }

    group = "io.perfmark"
    version = "0.21.0"

    ext {
        libraries = [
                errorprone: 'com.google.errorprone:error_prone_annotations:2.3.4',
                jsr305: 'com.google.code.findbugs:jsr305:3.0.2',
                gson: 'com.google.code.gson:gson:2.8.6',
                truth: 'com.google.truth:truth:1.0'
        ]
    }

    dependencies {
        testCompile group: 'junit', name: 'junit', version: '4.12'
    }
}