aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/sonar-education-plugin/build.gradle
blob: 71bad6499f18a54d87d28027e4cb4bcd1ad25c24 (plain)
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
configurations {
    testImplementation.extendsFrom(compileOnly)
}

dependencies {
    compileOnly 'org.sonarsource.api.plugin:sonar-plugin-api'

    testCompile 'junit:junit'
    testCompile 'org.assertj:assertj-core'
    testCompile 'org.mockito:mockito-core'
    testCompile project(':sonar-plugin-api-impl')
}

jar {
    manifest {
        attributes(
                'Plugin-Key': 'education',
                'Plugin-Version': project.version,
                'Plugin-Class': 'org.sonar.education.EducationPlugin',
                'Plugin-ChildFirstClassLoader': 'false',
                'Sonar-Version': project.version,
                'SonarLint-Supported': 'true',
                'Plugin-Name': 'Education'
        )
    }
    into('META-INF/lib') {
        from configurations.compileClasspath
    }
}

artifactoryPublish.skip = false

publishing {
    publications {
        mavenJava(MavenPublication) {
            from components.java
            if (release) {
                artifact sourcesJar
                artifact javadocJar
            }
        }
    }
}