mirror of
https://github.com/architectury/architectury-loom.git
synced 2026-04-02 05:27:43 -05:00
Initial project isolation support (#1215)
* Enable project isolation * Add test for COD * Make spotless happy
This commit is contained in:
@@ -110,6 +110,10 @@ public abstract class LoomGradleExtensionImpl extends LoomGradleExtensionApiImpl
|
||||
if (refreshDeps) {
|
||||
project.getLogger().lifecycle("Refresh dependencies is in use, loom will be significantly slower.");
|
||||
}
|
||||
|
||||
if (isolatedProjectsActive) {
|
||||
project.getLogger().lifecycle("Isolated projects is enabled, Loom support is highly experimental, not all features will be enabled.");
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
@@ -297,4 +301,9 @@ public abstract class LoomGradleExtensionImpl extends LoomGradleExtensionApiImpl
|
||||
public boolean isConfigurationCacheActive() {
|
||||
return configurationCacheActive;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isProjectIsolationActive() {
|
||||
return isolatedProjectsActive;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user