Skip to content

Commit ead7a76

Browse files
committed
init
0 parents  commit ead7a76

File tree

2 files changed

+131
-0
lines changed

2 files changed

+131
-0
lines changed

.gitignore

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

pom.xml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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>io.github.projectunified</groupId>
8+
<artifactId>uni-dialog</artifactId>
9+
<version>1.0-SNAPSHOT</version>
10+
11+
<properties>
12+
<maven.compiler.source>8</maven.compiler.source>
13+
<maven.compiler.target>8</maven.compiler.target>
14+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15+
</properties>
16+
17+
</project>

0 commit comments

Comments
 (0)