-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathbuild.gradle
42 lines (35 loc) · 873 Bytes
/
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
plugins {
id 'java-gradle-plugin'
id 'maven-publish'
id 'com.gradle.plugin-publish' version '0.18.0'
}
apply plugin: 'groovy'
apply plugin: 'idea'
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
implementation gradleApi()
implementation localGroovy()
}
gradlePlugin {
plugins {
archetypePlugin {
id = 'com.orctom.archetype'
implementationClass = 'com.orctom.gradle.archetype.ArchetypePlugin'
}
}
}
pluginBundle {
website = 'https://github.com/orctom/gradle-archetype-plugin'
vcsUrl = 'https://github.com/orctom/gradle-archetype-plugin'
description = 'Gradle plugin that generate projects from template.'
plugins {
archetypePlugin {
displayName = 'Archetype Generate Plugin'
description = 'Gradle plugin that generate projects from template'
tags = ['archetype', 'template']
}
}
}