This commit is contained in:
Alexander Nozik 2020-11-26 13:44:36 +03:00
parent 8c038fb2e1
commit f56f1be429
3 changed files with 2 additions and 4 deletions

View File

@ -11,7 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Feature matrix and Readme generation task for a `project` plugin.
- Add `binary-compatibility-validator` to the `project` plugin.
- Separate `yamlKt` serialization target
- Separate `ain` plugin
- Moved all logic to a common plugin, leaving only proxies for platform plugins
### Changed
- Remove node plugin. Node binaries should be turned on manually.
@ -24,7 +24,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Support of `kaml` and `snake-yaml` in favor of `yamlKt`
### Removed
- Node plugin.
### Fixed

View File

@ -13,5 +13,4 @@ open class KScienceJVMPlugin : Plugin<Project> {
}
plugins.apply(KScienceCommonPlugin::class)
}
}

View File

@ -28,7 +28,6 @@ open class KSciencePublishPlugin : Plugin<Project> {
project.configure<PublishingExtension> {
// Process each publication we have in this project
publications.withType<MavenPublication>().forEach { publication ->
@Suppress("UnstableApiUsage")
publication.pom {
name.set(project.name)
description.set(project.description)