This repository was archived by the owner on Feb 26, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +10
-8
lines changed
kotlin-builder-annotation Expand file tree Collapse file tree 5 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 11.gradle
22.idea
33** /build /
4+ * .iml
5+ /kotlin-builder-example-usage /.kotlintest /
46
57# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
68! gradle-wrapper.jar
Original file line number Diff line number Diff line change 11buildscript {
2- ext. kotlin_version = ' 1.2.71 '
3- ext. kotlintest_version = ' 3.1.10 '
2+ ext. kotlin_version = ' 1.3.50 '
3+ ext. kotlintest_version = ' 3.3.2 '
44 ext. junit_jupiter_version = ' 5.3.1'
55
66 repositories {
Original file line number Diff line number Diff line change 1- # Sun Aug 05 16:37:36 BST 2018
21distributionBase =GRADLE_USER_HOME
32distributionPath =wrapper/dists
3+ distributionUrl =https\://services.gradle.org/distributions/gradle-5.6.2-bin.zip
44zipStoreBase =GRADLE_USER_HOME
55zipStorePath =wrapper/dists
6- distributionUrl =https\://services.gradle.org/distributions/gradle-4.9-all.zip
Original file line number Diff line number Diff line change @@ -7,12 +7,12 @@ dependencies {
77
88task sourcesJar (type : Jar ) {
99 from sourceSets. main. allSource
10- classifier = ' sources'
10+ archiveClassifier = ' sources'
1111}
1212
1313task javadocJar (type : Jar ) {
1414 from javadoc
15- classifier = ' javadoc'
15+ archiveClassifier = ' javadoc'
1616}
1717
1818publishing {
Original file line number Diff line number Diff line change @@ -10,15 +10,16 @@ dependencies {
1010 implementation " org.jetbrains.kotlin:kotlin-reflect:$kotlin_version "
1111}
1212
13+ kapt. includeCompileClasspath = false
1314
1415task sourcesJar (type : Jar ) {
1516 from sourceSets. main. allSource
16- classifier = ' sources'
17+ archiveClassifier = ' sources'
1718}
1819
1920task javadocJar (type : Jar ) {
2021 from javadoc
21- classifier = ' javadoc'
22+ archiveClassifier = ' javadoc'
2223}
2324
2425publishing {
You can’t perform that action at this time.
0 commit comments