Skip to content

Commit

Permalink
Merge pull request #6 from nomanr/revert/1.0.4
Browse files Browse the repository at this point in the history
Revert: 1.0.4
  • Loading branch information
nomanr authored Jan 22, 2025
2 parents a810e93 + ef13188 commit 3c3d1e1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## [1.0.5] January 23, 2025
- Revert 1.0.4

## [1.0.4] January 21, 2025
- Initialise the properties in `LumoTask` directly instead of lazily initialisation.

Expand Down
2 changes: 1 addition & 1 deletion lumo-ui/plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group = "com.nomanr"
version = "1.0.4"
version = "1.0.5"

gradlePlugin {
plugins {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ abstract class LumoTask : DefaultTask() {
@Optional
var componentToAdd: String? = null

private val propertyLoader = PropertyLoader(project)
private val initialiser = Initialiser(project, propertyLoader)
private val dependencyProvider = PluginDependencyProvider()
private val generateComponent = GenerateComponent(project, propertyLoader)
private val propertyLoader by lazy { PropertyLoader(project) }
private val initialiser by lazy { Initialiser(project, propertyLoader) }
private val dependencyProvider by lazy { PluginDependencyProvider() }
private val generateComponent by lazy { GenerateComponent(project, propertyLoader) }
private val logger = Logger.getInstance()

@TaskAction
Expand Down

0 comments on commit 3c3d1e1

Please sign in to comment.