Skip to content

Commit

Permalink
Convert to Maven project
Browse files Browse the repository at this point in the history
  • Loading branch information
9vult committed Feb 1, 2022
1 parent 6f28c76 commit 0324aba
Show file tree
Hide file tree
Showing 4 changed files with 84 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ libs/*
.classpath
.settings
.settings/*
./.settings/*
./.settings/*
/target/
6 changes: 6 additions & 0 deletions .project
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,14 @@
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
<filteredResources>
Expand Down
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
"java.dependency.packagePresentation": "hierarchical"
"java.dependency.packagePresentation": "hierarchical",
"java.configuration.updateBuildConfiguration": "automatic"
}
74 changes: 74 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>kfxgui</groupId>
<artifactId>kfxgui</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>KFX-GUI</name>
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<release>11</release>
</configuration>
</plugin>
</plugins>
</build>


<dependencies>

<dependency>
<groupId>com.electronwill.night-config</groupId>
<artifactId>toml</artifactId>
<version>3.6.5</version>
</dependency>


<dependency>
<groupId>com.electronwill.night-config</groupId>
<artifactId>core</artifactId>
<version>3.6.5</version>
</dependency>


<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.9</version>
</dependency>


<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-graphics</artifactId>
<version>18-ea+10</version>
</dependency>


<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>18-ea+10</version>
</dependency>


<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-base</artifactId>
<version>18-ea+10</version>
</dependency>



<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx</artifactId>
<version>18-ea+10</version>
<type>pom</type>
</dependency>

</dependencies>
</project>

0 comments on commit 0324aba

Please sign in to comment.