forked from pdvrieze/kotlinsql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
165 lines (136 loc) · 4.32 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
/*
* Copyright (c) 2018.
*
* This file is part of ProcessManager.
*
* This file is licenced to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You should have received a copy of the license with the source distribution.
* Alternatively, you may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
buildscript {
ext {
if (! rootProject.hasProperty('kotlin_version') ) { kotlin_version = '1.2.60' }
if (! rootProject.hasProperty('codegen_version') ) { codegen_version = '0.5.10' }
if (! rootProject.hasProperty('jupiterVersion') ) { jupiterVersion = '5.2.0' }
if (! rootProject.hasProperty('junit5_version') ) { junit5_version = '1.2.0' }
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "net.devrieze:gradle-codegen:${codegen_version}"
}
repositories {
mavenLocal()
jcenter()
maven {
url='https://dl.bintray.com/kotlin/kotlin-eap-1.2'
}
}
}
plugins {
id "com.gradle.plugin-publish" version "0.9.7"
id "com.jfrog.bintray" version "1.7.3"
id 'maven-publish'
}
apply plugin: 'kotlin'
apply plugin: 'idea'
apply plugin: 'net.devrieze.gradlecodegen'
ext {
// if (! rootProject.hasProperty('kotlin_version') ) { kotlin_version = '1.1.2-3' }
if (! rootProject.hasProperty('myJavaVersion')) { myJavaVersion = JavaVersion.VERSION_1_8 }
}
version = '0.7.3'
group = 'net.devrieze'
bintray {
if (rootProject.hasProperty('bintrayUser')) {
user = bintrayUser
key = bintrayApiKey
}
publications = ['MyPublication']
pkg {
repo = 'maven'
name = 'kotlinsql'
userOrg = 'pdvrieze'
licenses = ['Apache-2.0']
vcsUrl = 'https://github.com/pdvrieze/kotlinsql.git'
version {
name = project.version
desc = 'Bugfix issue'
released = new Date()
vcsTag = "v$version"
}
}
}
publishing {
publications {
MyPublication(MavenPublication) {
from components.java
groupId group
artifactId 'kotlinsql'
artifact sourceJar {
classifier "sources"
}
}
}
}
description = 'A utility library for working with databases in kotlin'
repositories {
jcenter()
}
test {
useJUnitPlatform()
}
sourceSets {
main {
generate {
def depth = 10
databaseFunctions{
output = 'uk/ac/bournemouth/util/kotlin/sql/impl/gen/DatabaseMethods.kt'
generator = "kotlinsql.builder.GenerateDatabaseBaseKt"
input = depth
}
selects{
output = 'uk/ac/bournemouth/util/kotlin/sql/impl/gen/selectImpls.kt'
generator = "kotlinsql.builder.GenerateSelectClasses"
input = depth
}
statements{
output = 'uk/ac/bournemouth/util/kotlin/sql/impl/gen/statementImpls.kt'
generator = "kotlinsql.builder.GenerateStatementsKt"
input = depth
}
inserts{
output = 'uk/ac/bournemouth/util/kotlin/sql/impl/gen/Inserts.kt'
generator = "kotlinsql.builder.GenerateInsertsKt"
input = depth
}
}
}
}
task sourceJar(type: Jar) {
from sourceSets.main.allSource
from files('LICENSE')
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
// api "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
generatorsCompile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
testImplementation "org.junit.jupiter:junit-jupiter-api:$jupiterVersion"
testRuntime "org.junit.jupiter:junit-jupiter-engine:$jupiterVersion"
}
idea{
module {
downloadSources = true
}
}
sourceCompatibility = myJavaVersion
targetCompatibility = myJavaVersion