Skip to content

Commit 1335a70

Browse files
authored
Fixing missing sources in releases. (#550)
* Fixing missing sources in releases. * fmt * Remove scala compiler option.
1 parent 41ea1b2 commit 1335a70

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased/Snapshot]
88

9+
### Fixed
10+
- Fixed missing scala sources in releases [#549](https://github.com/ie3-institute/PowerSystemUtils/issues/549)
11+
912
## [3.0.0]
1013

1114
### Added

gradle/scripts/mavenCentralPublish.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
tasks.register("sourcesJar", Jar) {
44
archiveClassifier.set("sources")
5-
from sourceSets.main.allJava
5+
from sourceSets.main.allSource
66
}
77

88
tasks.register("javadocJar", Jar) {

0 commit comments

Comments
 (0)