Skip to content

Commit

Permalink
Change package name and create LogCrawl.java
Browse files Browse the repository at this point in the history
  • Loading branch information
bananaplayctf committed Apr 17, 2024
1 parent 539d32c commit e2448b4
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@
<artifactId>exec-maven-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<mainClass>UI.Main</mainClass>
<mainClass>ui.Main</mainClass>
</configuration>
</plugin>
<plugin>
<groupId>org.openjfx</groupId>
<artifactId>javafx-maven-plugin</artifactId>
<version>0.0.8</version>
<configuration>
<mainClass>UI.Main</mainClass>
<mainClass>ui.Main</mainClass>
</configuration>
</plugin>
</plugins>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package UI;
package ui;

import javafx.fxml.FXML;
import javafx.scene.input.MouseEvent;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package UI;
package ui;

import javafx.application.Application;
import javafx.fxml.FXMLLoader;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/UI/Main.java → src/main/java/ui/Main.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package UI;
package ui;

import javafx.application.Application;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package UI;
package ui;

import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package UI;
package ui;

import javafx.application.Application;
import javafx.fxml.FXMLLoader;
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/fxml/LoginForm.fxml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>

<VBox alignment="CENTER" spacing="10" xmlns="http://javafx.com/javafx/17.0.10" xmlns:fx="http://javafx.com/fxml/1" fx:controller="UI.Controller" styleClass="main">
<VBox alignment="CENTER" spacing="10" xmlns="http://javafx.com/javafx/17.0.10" xmlns:fx="http://javafx.com/fxml/1" fx:controller="ui.Controller" styleClass="main">
<VBox alignment="CENTER" spacing="10" styleClass="content-wrapper">
<VBox alignment="CENTER" spacing="10" styleClass="login-wrapper">
<Label text="Sign In" styleClass="login-label"/>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/fxml/SignUpForm.fxml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>

<VBox alignment="CENTER" spacing="10" xmlns="http://javafx.com/javafx/17.0.10" xmlns:fx="http://javafx.com/fxml/1" fx:controller="UI.Controller" styleClass="main">
<VBox alignment="CENTER" spacing="10" xmlns="http://javafx.com/javafx/17.0.10" xmlns:fx="http://javafx.com/fxml/1" fx:controller="ui.Controller" styleClass="main">
<VBox spacing="10" styleClass="content-wrapper">
<VBox spacing="10" styleClass="return-wrapper">
<Label text="Return to Login" styleClass="return-label" onMouseClicked="#returnToLogin"/>
Expand Down

0 comments on commit e2448b4

Please sign in to comment.