Skip to content

Commit

Permalink
update building command for phoebus
Browse files Browse the repository at this point in the history
  • Loading branch information
jeonghanlee committed Oct 10, 2024
1 parent 3866149 commit 7880ae6
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions configure/RULES_PHOEBUS
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,14 @@ JAVAHOME = ${JAVA_HOME}

phoebus:
ifeq "$(JAVAHOME)" ""
$(QUIET)echo "JAVA_HOME must be defined. Please do the following command first:"
$(QUIET)echo "source scripts/set_java_path.bash \"$(JAVA_PATH)\" "
$(QUIET)echo "JAVA_HOME must be defined. "
else
ifeq ($(UNAME_S),Linux)
$(QUIET)JAVA_HOME=$(JAVA_HOME) $(MAVEN_CMD) clean verify -Djavafx.platform=linux -f $(PS_SRC_ROOT)/dependencies/pom.xml
$(QUIET)JAVA_HOME=$(JAVA_HOME) $(MAVEN_CMD) -f $(PS_SRC_ROOT)/pom.xml install -Djavafx.platform=linux -DskipTests -Dmaven.test.skip=true
endif
ifeq ($(UNAME_S),Darwin)
$(QUIET)JAVA_HOME=$(JAVA_HOME) $(MAVEN_CMD) clean verify -Djavafx.platform=mac -f $(PS_SRC_ROOT)/dependencies/pom.xml
$(QUIET)JAVA_HOME=$(JAVA_HOME) $(MAVEN_CMD) -f $(PS_SRC_ROOT)/pom.xml install -Djavafx.platform=mac -DskipTests -Dmaven.test.skip=true
endif
$(QUIET)JAVA_HOME=$(JAVA_HOME) $(MAVEN_CMD) -f $(PS_SRC_ROOT)/pom.xml clean install -Dmaven.test.skip=true
endif

build.phoebus: depverify phoebus
Expand Down

0 comments on commit 7880ae6

Please sign in to comment.