Skip to content

Commit

Permalink
fix: fixed bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
YarikRevich committed Oct 6, 2024
1 parent bdbf63c commit b1c42ce
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 9 deletions.
16 changes: 8 additions & 8 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ ifneq (,$(wildcard ./bin/cluster))
@rm -r ./bin/cluster
endif
ifeq ($(dev), 'false')
@mvn -pl cluster -T10 install
@mvn -pl cluster -T10 install -U
else
@mvn -P dev -pl cluster -T10 install
@mvn -P dev -pl cluster -T10 install -U
endif
$(MAKE) clone-cluster

Expand All @@ -89,9 +89,9 @@ ifneq (,$(wildcard ./bin/api-server))
@rm -r ./bin/api-server
endif
ifeq ($(dev), 'false')
@mvn -pl api-server -T10 install
@mvn -pl api-server -T10 install -U
else
@mvn -P dev -pl api-server -T10 install
@mvn -P dev -pl api-server -T10 install -U
endif
$(MAKE) clone-api-server

Expand All @@ -101,9 +101,9 @@ ifneq (,$(wildcard ./bin/cli))
@rm -r ./bin/cli
endif
ifeq ($(dev), 'false')
@mvn -pl cli -T10 install
@mvn -pl cli -T10 install -U
else
@mvn -P dev -pl cli -T10 install
@mvn -P dev -pl cli -T10 install -U
endif

.PHONY: build-gui
Expand All @@ -112,7 +112,7 @@ ifneq (,$(wildcard ./bin/gui))
@rm -r ./bin/gui
endif
ifeq ($(dev), 'false')
@mvn -pl gui -T10 install
@mvn -pl gui -T10 install -U
else
@mvn -P dev -pl gui -T10 install
@mvn -P dev -pl gui -T10 install -U
endif
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/**
* Service used for logging fatal level application state changes.
*/
@Plugin(name = "FatalAppender", category = Core.CATEGORY_NAME, elementType = Appender.ELEMENT_TYPE)
@Plugin(name = "fatalappender", category = Core.CATEGORY_NAME, elementType = Appender.ELEMENT_TYPE)
public class FatalAppender extends AbstractAppender {
protected FatalAppender(String name, Filter filter) {
super(name, filter, null, false, null);
Expand Down
5 changes: 5 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,11 @@
</dependency>

<!-- THIRD PARTY -->
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>1.15.3</version>
</dependency>
<dependency>
<groupId>io.pebbletemplates</groupId>
<artifactId>pebble</artifactId>
Expand Down

0 comments on commit b1c42ce

Please sign in to comment.