Skip to content

Commit 823c331

Browse files
authored
Add files via upload
1 parent 6296662 commit 823c331

2 files changed

Lines changed: 80 additions & 0 deletions

File tree

.gitignore

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
target/
2+
!.mvn/wrapper/maven-wrapper.jar
3+
!**/src/main/**/target/
4+
!**/src/test/**/target/
5+
6+
### IntelliJ IDEA ###
7+
.idea/modules.xml
8+
.idea/jarRepositories.xml
9+
.idea/compiler.xml
10+
.idea/libraries/
11+
*.iws
12+
*.iml
13+
*.ipr
14+
15+
### Eclipse ###
16+
.apt_generated
17+
.classpath
18+
.factorypath
19+
.project
20+
.settings
21+
.springBeans
22+
.sts4-cache
23+
24+
### NetBeans ###
25+
/nbproject/private/
26+
/nbbuild/
27+
/dist/
28+
/nbdist/
29+
/.nb-gradle/
30+
build/
31+
!**/src/main/**/build/
32+
!**/src/test/**/build/
33+
34+
### VS Code ###
35+
.vscode/
36+
37+
### Mac OS ###
38+
.DS_Store

pom.xml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>org.example</groupId>
8+
<artifactId>FieldArrowsJava2</artifactId>
9+
<version>1.0-SNAPSHOT</version>
10+
11+
<properties>
12+
<maven.compiler.source>22</maven.compiler.source>
13+
<maven.compiler.target>22</maven.compiler.target>
14+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15+
</properties>
16+
<dependencies>
17+
<!-- https://mvnrepository.com/artifact/org.jfree/jfreechart -->
18+
<dependency>
19+
<groupId>org.jfree</groupId>
20+
<artifactId>jfreechart</artifactId>
21+
<version>1.5.5</version>
22+
</dependency>
23+
<!-- https://mvnrepository.com/artifact/net.objecthunter/exp4j -->
24+
<dependency>
25+
<groupId>net.objecthunter</groupId>
26+
<artifactId>exp4j</artifactId>
27+
<version>0.4.8</version>
28+
</dependency>
29+
<!-- https://mvnrepository.com/artifact/com.formdev/flatlaf -->
30+
<dependency>
31+
<groupId>com.formdev</groupId>
32+
<artifactId>flatlaf</artifactId>
33+
<version>3.5.4</version>
34+
</dependency>
35+
<!-- https://mvnrepository.com/artifact/com.miglayout/miglayout -->
36+
<dependency>
37+
<groupId>com.miglayout</groupId>
38+
<artifactId>miglayout</artifactId>
39+
<version>3.7.4</version>
40+
</dependency>
41+
</dependencies>
42+
</project>

0 commit comments

Comments
 (0)