-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
50 lines (43 loc) · 1.15 KB
/
build.gradle
File metadata and controls
50 lines (43 loc) · 1.15 KB
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
45
46
47
48
49
50
plugins {
id 'groovy'
id 'java-gradle-plugin'
id 'maven-publish'
id "com.gradle.plugin-publish" version "0.15.0"
}
group 'org.jamplate'
version '0.3.0'
repositories {
mavenCentral()
maven {
url 'https://jitpack.io'
}
}
dependencies {
implementation 'org.jamplate:processor:0.3.0-beta-002'
testImplementation 'org.junit.jupiter:junit-jupiter:5.7.1'
implementation 'org.jetbrains:annotations:20.1.0'
}
pluginBundle {
website = 'https://jamplate.org'
vcsUrl = 'https://github.com/jamplate/gradle'
description = "Jamplate is a C-Style pre-processor. Although it is a C-Style, this " +
"does not mean it is following the C standard. This pre-processor has " +
"almost the same expected behaviour as a standard C pre-processors with " +
"some features added and some missing."
tags = ['preprocessor', 'generator', 'jamplate']
plugins {
Jamplate {
displayName = "Jamplate"
}
}
}
gradlePlugin {
plugins {
Jamplate {
id = 'org.jamplate'
displayName = 'Jamplate'
description = 'Jamplate Gradle Plugin is a plugin executing Jamplate Processor for Java.'
implementationClass = 'org.jamplate.gradle.JamplatePlugin'
}
}
}