-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
98 changed files
with
735 additions
and
8,983 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,11 @@ | ||
/bin/ | ||
### Maven ### | ||
target/ | ||
pom.xml.tag | ||
pom.xml.releaseBackup | ||
pom.xml.versionsBackup | ||
pom.xml.next | ||
release.properties | ||
dependency-reduced-pom.xml | ||
buildNumber.properties | ||
.mvn/timing.properties | ||
.mvn/wrapper/maven-wrapper.jar |
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<actions> | ||
<action> | ||
<actionName>run</actionName> | ||
<packagings> | ||
<packaging>jar</packaging> | ||
</packagings> | ||
<goals> | ||
<goal>clean</goal> | ||
<goal>javafx:run</goal> | ||
</goals> | ||
</action> | ||
<action> | ||
<actionName>debug</actionName> | ||
<goals> | ||
<goal>clean</goal> | ||
<goal>javafx:run@ide-debug</goal> | ||
</goals> | ||
<properties> | ||
<jpda.listen>true</jpda.listen> | ||
</properties> | ||
</action> | ||
<action> | ||
<actionName>profile</actionName> | ||
<goals> | ||
<goal>clean</goal> | ||
<goal>javafx:run@ide-profile</goal> | ||
</goals> | ||
</action> | ||
<action> | ||
<actionName>CUSTOM-jlink</actionName> | ||
<displayName>jlink</displayName> | ||
<goals> | ||
<goal>clean</goal> | ||
<!-- compile not needed with javafx-maven-plugin v0.0.5 --> | ||
<goal>compile</goal> | ||
<goal>javafx:jlink</goal> | ||
</goals> | ||
</action> | ||
</actions> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,160 @@ | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>com.erikshea</groupId> | ||
<artifactId>NestiUserAccount</artifactId> | ||
<version>1.0</version> | ||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<maven.compiler.source>11</maven.compiler.source> | ||
<maven.compiler.target>11</maven.compiler.target> | ||
</properties> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.openjfx</groupId> | ||
<artifactId>javafx-controls</artifactId> | ||
<version>15.0.1</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.openjfx</groupId> | ||
<artifactId>javafx-fxml</artifactId> | ||
<version>15.0.1</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.xerial</groupId> | ||
<artifactId>sqlite-jdbc</artifactId> | ||
<version>3.30.1</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>mysql</groupId> | ||
<artifactId>mysql-connector-java</artifactId> | ||
<version>8.0.22</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>at.favre.lib</groupId> | ||
<artifactId>bcrypt</artifactId> | ||
<version>0.9.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.junit.jupiter</groupId> | ||
<artifactId>junit-jupiter-api</artifactId> | ||
<version>5.7.0</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.testfx</groupId> | ||
<artifactId>testfx-junit</artifactId> | ||
<version>4.0.15-alpha</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.testfx</groupId> | ||
<artifactId>testfx-junit5</artifactId> | ||
<version>4.0.16-alpha</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.testfx</groupId> | ||
<artifactId>testfx-core</artifactId> | ||
<version>4.0.16-alpha</version> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-shade-plugin</artifactId> | ||
<version>3.2.4</version> | ||
<executions> | ||
<execution> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>shade</goal> | ||
</goals> | ||
<configuration> | ||
<filters> | ||
<filter> | ||
<artifact>*:*</artifact> | ||
<excludes> | ||
<exclude>META-INF/*.SF</exclude> | ||
<exclude>META-INF/*.DSA</exclude> | ||
<exclude>META-INF/*.RSA</exclude> | ||
</excludes> | ||
</filter> | ||
</filters> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-jar-plugin</artifactId> | ||
<version>3.2.0</version> | ||
<configuration> | ||
<archive> | ||
<manifest> | ||
<addClasspath>true</addClasspath> | ||
<mainClass>com.erikshea.nestiuseraccount.application.NestiUserAccountLauncher</mainClass> | ||
</manifest> | ||
</archive> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.8.0</version> | ||
<configuration> | ||
<release>11</release> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.openjfx</groupId> | ||
<artifactId>javafx-maven-plugin</artifactId> | ||
<version>0.0.4</version> | ||
<configuration> | ||
<mainClass>com.erikshea.nestiuseraccount.application.NestiUserAccountLauncher</mainClass> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<!-- Default configuration for running --> | ||
<!-- Usage: mvn clean javafx:run --> | ||
<id>default-cli</id> | ||
</execution> | ||
<execution> | ||
<!-- Configuration for manual attach debugging --> | ||
<!-- Usage: mvn clean javafx:run@debug --> | ||
<id>debug</id> | ||
<configuration> | ||
<options> | ||
<option>-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=localhost:8000</option> | ||
</options> | ||
</configuration> | ||
</execution> | ||
<execution> | ||
<!-- Configuration for automatic IDE debugging --> | ||
<id>ide-debug</id> | ||
<configuration> | ||
<options> | ||
<option>-agentlib:jdwp=transport=dt_socket,server=n,address=${jpda.address}</option> | ||
</options> | ||
</configuration> | ||
</execution> | ||
<execution> | ||
<!-- Configuration for automatic IDE profiling --> | ||
<id>ide-profile</id> | ||
<configuration> | ||
<options> | ||
<option>${profiler.jvmargs.arg1}</option> | ||
<option>${profiler.jvmargs.arg2}</option> | ||
<option>${profiler.jvmargs.arg3}</option> | ||
<option>${profiler.jvmargs.arg4}</option> | ||
<option>${profiler.jvmargs.arg5}</option> | ||
</options> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.