Skip to content

Commit

Permalink
feat: add api update score, update password
Browse files Browse the repository at this point in the history
  • Loading branch information
lcaohoanq committed Aug 30, 2024
1 parent d08a9c7 commit 00a550e
Show file tree
Hide file tree
Showing 102 changed files with 618 additions and 743 deletions.
10 changes: 4 additions & 6 deletions .idea/encodings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

107 changes: 96 additions & 11 deletions logs/app.log

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion mvnw.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ title %0
@REM set %HOME% to equivalent of $HOME
if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%")

@REM Execute a user defined script before this one
@REM Execute a userDTO defined script before this one
if not "%MAVEN_SKIP_RC%" == "" goto skipRcPre
@REM check for pre script, once with legacy .bat ending and once with .cmd ending
if exist "%USERPROFILE%\mavenrc_pre.bat" call "%USERPROFILE%\mavenrc_pre.bat" %*
Expand Down
39 changes: 8 additions & 31 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,6 @@
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/com.mysql/mysql-connector-j -->
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
<version>8.0.33</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.swinglabs/swingx -->
<dependency>
<groupId>org.swinglabs</groupId>
Expand Down Expand Up @@ -144,52 +138,44 @@
<build>
<resources>
<resource>
<directory>src/main/resources/com/lcaohoanq/formhandling/</directory>
<directory>src/main/resources/com/lcaohoanq/fxsnakegame/</directory>
<filtering>false</filtering>
<includes>
<include>**.fxml</include>
</includes>
<targetPath>${project.build.outputDirectory}/com/lcaohoanq/formhandling</targetPath>
<targetPath>${project.build.outputDirectory}/com/lcaohoanq/fxsnakegame</targetPath>
</resource>
<resource>
<directory>src/main/resources/com/lcaohoanq/formhandling/assets/img</directory>
<directory>src/main/resources/com/lcaohoanq/fxsnakegame/assets/img</directory>
<filtering>false</filtering>
<includes>
<include>**.png</include>
</includes>
<targetPath>${project.build.outputDirectory}/assets/img</targetPath>
</resource>
<resource>
<directory>src/main/resources/com/lcaohoanq/formhandling/assets/sound</directory>
<directory>src/main/resources/com/lcaohoanq/fxsnakegame/assets/sound</directory>
<filtering>false</filtering>
<includes>
<include>**.wav</include>
</includes>
<targetPath>${project.build.outputDirectory}/assets/sound</targetPath>
</resource>
<resource>
<directory>src/main/resources/com/lcaohoanq/formhandling/templates/email</directory>
<directory>src/main/resources/com/lcaohoanq/fxsnakegame/templates/email</directory>
<filtering>false</filtering>
<includes>
<include>**.html</include>
</includes>
<targetPath>${project.build.outputDirectory}/templates/email</targetPath>
</resource>
<resource>
<directory>src/main/resources/com/lcaohoanq/formhandling</directory>
<directory>src/main/resources/com/lcaohoanq/fxsnakegame</directory>
<filtering>false</filtering>
<includes>
<include>logback.xml</include>
</includes>
</resource>
<resource>
<directory>src/main/resources/com/lcaohoanq/formhandling/META-INF</directory>
<filtering>false</filtering>
<includes>
<include>persistence.xml</include>
</includes>
<targetPath>META-INF</targetPath>
</resource>
</resources>
<plugins>
<!-- Add maven-jar-plugin for creating a JAR file -->
Expand All @@ -200,7 +186,7 @@
<configuration>
<archive>
<manifest>
<mainClass>com.lcaohoanq.formhandling.Main</mainClass>
<mainClass>com.lcaohoanq.fxsnakegame.Main</mainClass>
</manifest>
</archive>
</configuration>
Expand Down Expand Up @@ -251,15 +237,6 @@
<warSourceDirectory>${basedir}/src/main/webapp</warSourceDirectory>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<configuration>
<source>18</source>
<target>18</target>
</configuration>
</plugin>
<plugin>
<groupId>org.openjfx</groupId>
<artifactId>javafx-maven-plugin</artifactId>
Expand All @@ -269,7 +246,7 @@
<!-- Default configuration for running with: mvn clean javafx:run -->
<id>default-cli</id>
<configuration>
<mainClass>com.lcaohoanq.formhandling/com.lcaohoanq.formhandling.Main
<mainClass>com.lcaohoanq.fxsnakegame/com.lcaohoanq.fxsnakegame.Main
</mainClass>
<launcher>app</launcher>
<jlinkZipName>app</jlinkZipName>
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

36 changes: 0 additions & 36 deletions src/main/java/com/lcaohoanq/formhandling/models/LoginModel.java

This file was deleted.

This file was deleted.

Loading

0 comments on commit 00a550e

Please sign in to comment.