@@ -9,13 +9,13 @@ plugins {
9
9
val jarSources by tasks.registering(Jar ::class ) {
10
10
dependsOn(" codegen" )
11
11
from(sourceSets.main.map { it.allSource })
12
- archiveClassifier.set( " sources" )
12
+ archiveClassifier = " sources"
13
13
}
14
14
15
15
val jarJavadoc by tasks.registering(Jar ::class ) {
16
16
dependsOn(tasks.dokkaJavadoc)
17
17
from(tasks.dokkaJavadoc.flatMap { it.outputDirectory })
18
- archiveClassifier.set( " javadoc" )
18
+ archiveClassifier = " javadoc"
19
19
}
20
20
21
21
publishing {
@@ -30,139 +30,139 @@ publishing {
30
30
version = project.version.toString()
31
31
32
32
pom {
33
- name.set( " ${project.group} :${project.name} " )
34
- description.set( " A lightweight ORM Framework for Kotlin with strong typed SQL DSL and sequence APIs." )
35
- url.set( " https://www.ktorm.org" )
33
+ name = " ${project.group} :${project.name} "
34
+ description = " A lightweight ORM Framework for Kotlin with strong typed SQL DSL and sequence APIs."
35
+ url = " https://www.ktorm.org"
36
36
licenses {
37
37
license {
38
- name.set( " The Apache Software License, Version 2.0" )
39
- url.set( " http://www.apache.org/licenses/LICENSE-2.0.txt" )
38
+ name = " The Apache Software License, Version 2.0"
39
+ url = " http://www.apache.org/licenses/LICENSE-2.0.txt"
40
40
}
41
41
}
42
42
scm {
43
- url.set( " https://github.com/kotlin-orm/ktorm" )
44
- connection.set( " scm:git:https://github.com/kotlin-orm/ktorm.git" )
45
- developerConnection
.set( " scm:git:ssh://[email protected] /kotlin-orm/ktorm.git" )
43
+ url = " https://github.com/kotlin-orm/ktorm"
44
+ connection = " scm:git:https://github.com/kotlin-orm/ktorm.git"
45
+ developerConnection
= " scm:git:ssh://[email protected] /kotlin-orm/ktorm.git"
46
46
}
47
47
developers {
48
48
developer {
49
- id.set( " vincentlauvlwj" )
50
- name.set( " vince" )
51
-
49
+ id = " vincentlauvlwj"
50
+ name = " vince"
51
+
52
52
}
53
53
developer {
54
- id.set( " waluo" )
55
- name.set( " waluo" )
56
-
54
+ id = " waluo"
55
+ name = " waluo"
56
+
57
57
}
58
58
developer {
59
- id.set( " clydebarrow" )
60
- name.set( " Clyde" )
61
-
59
+ id = " clydebarrow"
60
+ name = " Clyde"
61
+
62
62
}
63
63
developer {
64
- id.set( " Ray-Eldath" )
65
- name.set( " Ray Eldath" )
66
-
64
+ id = " Ray-Eldath"
65
+ name = " Ray Eldath"
66
+
67
67
}
68
68
developer {
69
- id.set( " hangingman" )
70
- name.set( " hiroyuki.nagata" )
71
-
69
+ id = " hangingman"
70
+ name = " hiroyuki.nagata"
71
+
72
72
}
73
73
developer {
74
- id.set( " onXoot" )
75
- name.set( " beetlerx" )
76
-
74
+ id = " onXoot"
75
+ name = " beetlerx"
76
+
77
77
}
78
78
developer {
79
- id.set( " arustleund" )
80
- name.set( " Andrew Rustleund" )
81
-
79
+ id = " arustleund"
80
+ name = " Andrew Rustleund"
81
+
82
82
}
83
83
developer {
84
- id.set( " afezeria" )
85
- name.set( " afezeria" )
86
-
84
+ id = " afezeria"
85
+ name = " afezeria"
86
+
87
87
}
88
88
developer {
89
- id.set( " scorsi" )
90
- name.set( " Sylvain Corsini" )
91
-
89
+ id = " scorsi"
90
+ name = " Sylvain Corsini"
91
+
92
92
}
93
93
developer {
94
- id.set( " lyndsysimon" )
95
- name.set( " Lyndsy Simon" )
96
-
94
+ id = " lyndsysimon"
95
+ name = " Lyndsy Simon"
96
+
97
97
}
98
98
developer {
99
- id.set( " antonydenyer" )
100
- name.set( " Antony Denyer" )
101
-
99
+ id = " antonydenyer"
100
+ name = " Antony Denyer"
101
+
102
102
}
103
103
developer {
104
- id.set( " mik629" )
105
- name.set( " Mikhail Erkhov" )
106
-
104
+ id = " mik629"
105
+ name = " Mikhail Erkhov"
106
+
107
107
}
108
108
developer {
109
- id.set( " sinzed" )
110
- name.set( " Saeed Zahedi" )
111
-
109
+ id = " sinzed"
110
+ name = " Saeed Zahedi"
111
+
112
112
}
113
113
developer {
114
- id.set( " smn-dv" )
115
- name.set( " Simon Schoof" )
116
-
114
+ id = " smn-dv"
115
+ name = " Simon Schoof"
116
+
117
117
}
118
118
developer {
119
- id.set( " pedrod" )
120
- name.set( " Pedro Domingues" )
121
-
119
+ id = " pedrod"
120
+ name = " Pedro Domingues"
121
+
122
122
}
123
123
developer {
124
- id.set( " efenderbosch" )
125
- name.set( " Eric Fenderbosch" )
126
-
124
+ id = " efenderbosch"
125
+ name = " Eric Fenderbosch"
126
+
127
127
}
128
128
developer {
129
- id.set( " kocproz" )
130
- name.set( " Kacper Stasiuk" )
131
-
129
+ id = " kocproz"
130
+ name = " Kacper Stasiuk"
131
+
132
132
}
133
133
developer {
134
- id.set( " 2938137849" )
135
- name.set( " ccr" )
136
-
134
+ id = " 2938137849"
135
+ name = " ccr"
136
+
137
137
}
138
138
developer {
139
- id.set( " zuisong" )
140
- name.set( " zuisong" )
141
-
139
+ id = " zuisong"
140
+ name = " zuisong"
141
+
142
142
}
143
143
developer {
144
- id.set( " svenallers" )
145
- name.set( " Sven Allers" )
146
-
144
+ id = " svenallers"
145
+ name = " Sven Allers"
146
+
147
147
}
148
148
developer {
149
- id.set( " lookup-cat" )
150
- name.set( " 夜里的向日葵" )
151
-
149
+ id = " lookup-cat"
150
+ name = " 夜里的向日葵"
151
+
152
152
}
153
153
developer {
154
- id.set( " michaelfyc" )
155
- name.set( " michaelfyc" )
156
-
154
+ id = " michaelfyc"
155
+ name = " michaelfyc"
156
+
157
157
}
158
158
developer {
159
- id.set( " brohacz" )
160
- name.set( " Michal Brosig" )
159
+ id = " brohacz"
160
+ name = " Michal Brosig"
161
161
}
162
162
developer {
163
- id.set( " hc224" )
164
- name.set( " hc224" )
165
-
163
+ id = " hc224"
164
+ name = " hc224"
165
+
166
166
}
167
167
}
168
168
}
0 commit comments