Skip to content

Commit d52e65e

Browse files
committed
Initial new commit
1 parent d6e5eb1 commit d52e65e

File tree

19 files changed

+415
-2745
lines changed

19 files changed

+415
-2745
lines changed

.gitignore

Lines changed: 35 additions & 107 deletions
Original file line numberDiff line numberDiff line change
@@ -1,113 +1,41 @@
11
# User-specific stuff
22
.idea/
3+
.gradle/
34

5+
build/
6+
!gradle/wrapper/gradle-wrapper.jar
7+
!**/src/main/**/build/
8+
!**/src/test/**/build/
9+
10+
### IntelliJ IDEA ###
11+
*.iws
412
*.iml
513
*.ipr
6-
*.iws
7-
8-
# IntelliJ
914
out/
10-
11-
# Compiled class file
12-
*.class
13-
14-
# Log file
15-
*.log
16-
17-
# BlueJ files
18-
*.ctxt
19-
20-
# Package Files #
21-
*.jar
22-
*.war
23-
*.nar
24-
*.ear
25-
*.zip
26-
*.tar.gz
27-
*.rar
28-
29-
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
30-
hs_err_pid*
31-
32-
*~
33-
34-
# temporary files which can be created if a process still has a handle open of a deleted file
35-
.fuse_hidden*
36-
37-
# KDE directory preferences
38-
.directory
39-
40-
# Linux trash folder which might appear on any partition or disk
41-
.Trash-*
42-
43-
# .nfs files are created when an open file is removed but is still being accessed
44-
.nfs*
45-
46-
# General
47-
.DS_Store
48-
.AppleDouble
49-
.LSOverride
50-
51-
# Icon must end with two \r
52-
Icon
53-
54-
# Thumbnails
55-
._*
56-
57-
# Files that might appear in the root of a volume
58-
.DocumentRevisions-V100
59-
.fseventsd
60-
.Spotlight-V100
61-
.TemporaryItems
62-
.Trashes
63-
.VolumeIcon.icns
64-
.com.apple.timemachine.donotpresent
65-
66-
# Directories potentially created on remote AFP share
67-
.AppleDB
68-
.AppleDesktop
69-
Network Trash Folder
70-
Temporary Items
71-
.apdisk
72-
73-
# Windows thumbnail cache files
74-
Thumbs.db
75-
Thumbs.db:encryptable
76-
ehthumbs.db
77-
ehthumbs_vista.db
78-
79-
# Dump file
80-
*.stackdump
81-
82-
# Folder config file
83-
[Dd]esktop.ini
84-
85-
# Recycle Bin used on file shares
86-
$RECYCLE.BIN/
87-
88-
# Windows Installer files
89-
*.cab
90-
*.msi
91-
*.msix
92-
*.msm
93-
*.msp
94-
95-
# Windows shortcuts
96-
*.lnk
97-
98-
target/
99-
100-
pom.xml.tag
101-
pom.xml.releaseBackup
102-
pom.xml.versionsBackup
103-
pom.xml.next
104-
105-
release.properties
106-
dependency-reduced-pom.xml
107-
buildNumber.properties
108-
.mvn/timing.properties
109-
.mvn/wrapper/maven-wrapper.jar
110-
.flattened-pom.xml
111-
112-
# Common working directory
113-
run/
15+
!**/src/main/**/out/
16+
!**/src/test/**/out/
17+
18+
### Eclipse ###
19+
.apt_generated
20+
.classpath
21+
.factorypath
22+
.project
23+
.settings
24+
.springBeans
25+
.sts4-cache
26+
bin/
27+
!**/src/main/**/bin/
28+
!**/src/test/**/bin/
29+
30+
### NetBeans ###
31+
/nbproject/private/
32+
/nbbuild/
33+
/dist/
34+
/nbdist/
35+
/.nb-gradle/
36+
37+
### VS Code ###
38+
.vscode/
39+
40+
### Mac OS ###
41+
.DS_Store

build.gradle.kts

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
plugins {
2+
id("java")
3+
}
4+
5+
group = "de.pascalpex"
6+
version = "1.0-SNAPSHOT"
7+
8+
repositories {
9+
mavenCentral()
10+
}
11+
12+
dependencies {
13+
testImplementation(platform("org.junit:junit-bom:5.10.0"))
14+
testImplementation("org.junit.jupiter:junit-jupiter")
15+
}
16+
17+
tasks.test {
18+
useJUnitPlatform()
19+
}

gradle/wrapper/gradle-wrapper.jar

42.6 KB
Binary file not shown.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
4+
networkTimeout=10000
5+
validateDistributionUrl=true
6+
zipStoreBase=GRADLE_USER_HOME
7+
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)