-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.gradle
83 lines (68 loc) · 1.52 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
buildscript {
ext.kotlin_ver = '1.0.0'
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_ver"
}
}
plugins {
id 'com.bmuschko.nexus' version '2.3.1'
id 'com.gradle.plugin-publish' version '0.9.4'
}
apply plugin: 'kotlin'
group = 'org.kt3k'
version = '3.0.0'
repositories {
mavenCentral()
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_ver"
compile gradleApi()
}
modifyPom {
project {
name properties.'pom.name'
description properties.'pom.description'
url properties.'pom.url'
scm {
url properties.'pom.scm.url'
connection properties.'pom.scm.connection'
developerConnection properties.'pom.scm.developer.connection'
}
licenses {
license {
name properties.'pom.license.name'
url properties.'pom.license.url'
distribution properties.'pom.license.distribution'
}
}
developers {
developer {
id properties.'pom.developer.id'
name properties.'pom.developer.name'
}
}
}
}
extraArchive {
sources = true
javadoc = true
tests = false
}
nexus {
sign = true
}
pluginBundle {
website = 'https://github.com/kt3k/ebean-enhance-plugin'
vcsUrl = 'https://github.com/kt3k/ebean-enhance-plugin'
description = 'A gradle plugin for enhancing ebean entities.'
tags = ['ebean', 'orm']
plugins {
ebeanEnhancePlugin {
id = 'com.github.kt3k.ebean.enhance'
displayName = 'ebean-enhance-plugin'
}
}
}