-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Denis Zhdanov
committed
Dec 24, 2024
1 parent
f075ab9
commit 696a8fd
Showing
3 changed files
with
5 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,2 @@ | ||
## v1.0.0 released on 24 Dec 2024 UTC | ||
* f6c104aaee998429041b8c9b507e7e07a6c2b714 release- | ||
* 3ac0c436ba6091309f67ed59768133fc40c9eb90 setting up CI | ||
* 020a60e3e241d0fc31eb36ef84d2b73daf56f770 setting up CI | ||
* 1daf742cd181275ffd4fab6b05f339a731b28dc7 setting up CI | ||
* f02732c6225b20e1bc3dfad1e50a4ed50d114923 setting up CI | ||
* d7d0d4b8d67d28c3013936042cf3b8da253ae40d setting up CI | ||
* 4414429336b77f1c81083dd2b7b3dacc38d6b7b8 setting up CI | ||
* 35615bd6199565d0bd844225596365eb2fe98ce4 setting up CI | ||
* b4568728e22e926b67060e6eb6bc1ad39c74b5f5 setting up CI | ||
* 2e28255f636faedc76e8bbee10f3c9b072243e74 setting up CI | ||
* f9cfc9b8afd8546eea8da94ebdf3a1a267d38da6 setting up CI | ||
* 8c0b85f49171f52065ac4a6220a73c8ced5bb878 setting up CI | ||
* eed7d0e06025fc8593a8f0bc95d586c551654718 setting up CI | ||
* 206a08eb0722333ca391ed24d40b64bb7e0e8cd2 setting up CI | ||
* 6e8379e9066706c6d3a05efd94fd9f975b654dd1 setting up CI | ||
* f70030bd352c94fa371b8be57f6c2b067af633b8 setting up CI | ||
* 028abc2218ce2b753fdaaa3371d889146a1f916b setting up CI | ||
* 796357f2289de9588f05a54014def09c888c6167 setting up CI | ||
* b3155a81432fa35880c56aacf55417656265ff49 setting up CI | ||
* 4b9f93fdf1b80a83418fc0896e76f063a3a00aa5 setting up CI | ||
* ... | ||
* f6c104aaee998429041b8c9b507e7e07a6c2b714 setting up CI |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,8 @@ | ||
plugins { | ||
`java-gradle-plugin` | ||
kotlin("jvm") version "1.9.23" | ||
id("com.gradle.plugin-publish") version "1.2.1" | ||
id("tech.harmonysoft.oss.gradle.release.paperwork") version "1.10.0" | ||
} | ||
|
||
group = "tech.harmonysoft" | ||
version = "1.18.0" | ||
|
||
kotlin { | ||
jvmToolchain(8) | ||
} | ||
|
||
gradlePlugin { | ||
website = "https://gradle-dist.oss.harmonysoft.tech/" | ||
vcsUrl = "https://github.com/denis-zhdanov/custom-gradle-dist-gradle-plugin" | ||
plugins { | ||
create("gradleDist") { | ||
id = "tech.harmonysoft.oss.custom-gradle-dist-plugin" | ||
implementationClass = "tech.harmonysoft.oss.gradle.dist.CustomGradleDistributionPlugin" | ||
displayName = "Custom Gradle Wrapper construction plugin" | ||
description = "Helps setting up custom Gradle wrapper construction" | ||
tags = listOf("wrapper") | ||
} | ||
} | ||
} | ||
|
||
repositories { | ||
mavenCentral() | ||
} | ||
|
||
dependencies { | ||
testImplementation("org.junit.jupiter:junit-jupiter:5.10.2") | ||
testImplementation("org.assertj:assertj-core:3.25.3") | ||
testImplementation("tech.harmonysoft:harmonysoft-common-test:1.92.0") | ||
} | ||
|
||
tasks.withType<Test>().configureEach { | ||
useJUnitPlatform() | ||
releasePaperwork { | ||
projectVersionFile.set("pubspec.yaml") | ||
projectVersionRegex.set("version:\\s*([^\\s]+)") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |