Dev #5

Merged
altavir merged 24 commits from dev into master 2020-12-28 09:44:15 +03:00
3 changed files with 2 additions and 4 deletions
Showing only changes of commit f56f1be429 - Show all commits

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. - Feature matrix and Readme generation task for a `project` plugin.
- Add `binary-compatibility-validator` to the `project` plugin. - Add `binary-compatibility-validator` to the `project` plugin.
- Separate `yamlKt` serialization target - Separate `yamlKt` serialization target
- Separate `ain` plugin - Moved all logic to a common plugin, leaving only proxies for platform plugins
### Changed ### Changed
- Remove node plugin. Node binaries should be turned on manually. - 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` - Support of `kaml` and `snake-yaml` in favor of `yamlKt`
### Removed ### Removed
- Node plugin.
### Fixed ### Fixed

View File

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

View File

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