-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
47 lines (38 loc) · 940 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
42
43
44
45
46
47
plugins {
id 'groovy'
id 'maven-publish'
id 'org.ajoberstar.grgit' version '1.5.1'
id 'org.ajoberstar.release-opinion' version '1.5.1'
id 'com.gradle.plugin-publish' version '0.9.5'
}
repositories {
mavenCentral()
}
dependencies {
compile gradleApi()
compile localGroovy()
compile 'com.github.sommeri:less4j:1.17.2'
}
group = 'com.janitovff'
publishing {
repositories {
mavenLocal()
}
publications {
mavenJava(MavenPublication) {
from components.java
}
}
}
pluginBundle {
website = 'http://github.com/jvff/play-less-gradle-plugin'
vcsUrl = 'http://github.com/jvff/play-less-gradle-plugin'
description = 'Use Less stylesheets with the Play! framework'
tags = ['less', 'play']
plugins {
playLessPlugin {
id = 'com.janitovff.play-less'
displayName = 'Play Less Gradle plugin'
}
}
}