-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
44 lines (33 loc) · 1.02 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
plugins {
id 'groovy'
id 'java-gradle-plugin'
id 'com.gradle.plugin-publish' version '0.12.0'
}
apply plugin: 'groovy'
repositories {
mavenCentral()
}
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_1_8
version = "0.0.8"
group = "de"
pluginBundle {
website = 'https://github.com/arendd/AspectjGradlePlugin'
vcsUrl = 'https://github.com/arendd/AspectjGradlePlugin'
tags = ['gradle5','aspectj','java']
description = 'This is a plugin to use AspectJ with Gradle 5/6'
}
gradlePlugin {
plugins {
AspectjGradlePlugin {
id = 'aspectj.AspectjGradlePlugin'
displayName = 'AspectjGradlePlugin'
description = 'This is a plugin to use AspectJ with Gradle 5/6'
implementationClass = 'aspectj.AspectjGradlePlugin'
}
}
}
dependencies {
implementation 'org.codehaus.groovy:groovy-all:2.5.4'
testImplementation 'org.spockframework:spock-core:1.3-groovy-2.5'
}