-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbuild.gradle
More file actions
executable file
·48 lines (40 loc) · 1.19 KB
/
build.gradle
File metadata and controls
executable file
·48 lines (40 loc) · 1.19 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
buildscript {
ext.kotlin_version = '1.2.61'
repositories {
jcenter()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
plugins {
id "com.gradle.plugin-publish" version "0.9.10"
}
apply plugin: 'kotlin'
group 'fr.ligol'
version '1.1-alpha1'
sourceCompatibility = 1.8
repositories {
jcenter()
}
dependencies {
compile 'com.squareup.okhttp3:okhttp:3.11.0'
// https://mvnrepository.com/artifact/com.helger/ph-css
compile group: 'com.helger', name: 'ph-css', version: '6.1.1'
compile 'com.squareup:kotlinpoet:0.7.0'
compile gradleApi()
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
testCompile group: 'junit', name: 'junit', version: '4.12'
}
pluginBundle {
website = 'https://github.com/ligol/IconicsFontGenerator'
vcsUrl = 'https://github.com/ligol/IconicsFontGenerator.git'
plugins {
iconicsGeneratorPlugin {
id = 'fr.ligol.iconics_generator'
displayName = 'Iconics Generator Plugin'
description = 'This plugins generate custom IconicsFont from fontastic'
tags = ['iconics', 'font', 'generator']
}
}
}