File tree 2 files changed +7
-3
lines changed
2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
8
## [ Unreleased]
9
9
10
+ ### Fixed
11
+
12
+ - Declare Fabric APIs and common project as API instead of implementation.
13
+
10
14
## [ 0.13.2] - 2024-06-09
11
15
12
16
### Fixed
Original file line number Diff line number Diff line change @@ -255,14 +255,14 @@ allprojects {
255
255
modImplementation " net.fabricmc:fabric-loader:${ fabricLoaderVersion} "
256
256
modImplementation " net.fabricmc.fabric-api:fabric-api:${ fabricApiVersion} "
257
257
apis. collect {
258
- implementation project(it)
258
+ api project(it)
259
259
include project(it)
260
260
}
261
261
compileApis. collect {
262
- implementation project(it)
262
+ api project(it)
263
263
}
264
264
if (commonProject != null ) {
265
- implementation commonProject
265
+ modApi commonProject
266
266
}
267
267
}
268
268
processResources {
You can’t perform that action at this time.
0 commit comments