Skip to content

Commit 0826d7a

Browse files
committed
init
1 parent ac3d31e commit 0826d7a

33 files changed

Lines changed: 1268 additions & 0 deletions

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/target
2+
/.idea
3+
*.iml
4+
*.log
5+
.DS_Store

pom.xml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>app</groupId>
5+
<artifactId>sort-viz</artifactId>
6+
<version>1.0.0</version>
7+
<properties>
8+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
9+
<maven.compiler.release>21</maven.compiler.release>
10+
<javafx.version>21.0.2</javafx.version>
11+
</properties>
12+
<dependencies>
13+
<dependency>
14+
<groupId>org.openjfx</groupId>
15+
<artifactId>javafx-controls</artifactId>
16+
<version>${javafx.version}</version>
17+
</dependency>
18+
</dependencies>
19+
<build>
20+
<plugins>
21+
<plugin>
22+
<groupId>org.openjfx</groupId>
23+
<artifactId>javafx-maven-plugin</artifactId>
24+
<version>0.0.8</version>
25+
<configuration>
26+
<mainClass>app.Main</mainClass>
27+
</configuration>
28+
</plugin>
29+
</plugins>
30+
</build>
31+
</project>

0 commit comments

Comments
 (0)