File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed
plugin-build/plugin/src/main/kotlin/com/mikepenz/aboutlibraries/plugin Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -17,8 +17,6 @@ abstract class AboutLibrariesIdTask : BaseAboutLibrariesTask() {
1717
1818 @TaskAction
1919 fun action () {
20- offlineMode.set(true ) // Force offline mode
21-
2220 val result = createLibraryPostProcessor().process()
2321 val libraries = result.libraries
2422 variantToDependencyData.get().keys.forEach {
Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ class AboutLibrariesPlugin : Plugin<Project> {
3434
3535 // task to output library names with ids for further actions
3636 project.tasks.configure(" findLibraries" , AboutLibrariesIdTask ::class .java) {
37+ it.offlineMode.set(true ) // Force offline mode
3738 it.configure()
3839 }
3940
You can’t perform that action at this time.
0 commit comments