Skip to content

Commit a108b7f

Browse files
committed
chore: initial commit
0 parents  commit a108b7f

3 files changed

Lines changed: 552 additions & 0 deletions

File tree

.gitignore

Lines changed: 170 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,170 @@
1+
### Maven template
2+
target/
3+
pom.xml.tag
4+
pom.xml.releaseBackup
5+
pom.xml.versionsBackup
6+
pom.xml.next
7+
release.properties
8+
dependency-reduced-pom.xml
9+
buildNumber.properties
10+
.mvn/timing.properties
11+
# https://github.com/takari/maven-wrapper#usage-without-binary-jar
12+
.mvn/wrapper/maven-wrapper.jar
13+
14+
# Eclipse m2e generated files
15+
# Eclipse Core
16+
.project
17+
# JDT-specific (Eclipse Java Development Tools)
18+
.classpath
19+
20+
### NetBeans template
21+
**/nbproject/private/
22+
**/nbproject/Makefile-*.mk
23+
**/nbproject/Package-*.bash
24+
build/
25+
nbbuild/
26+
dist/
27+
nbdist/
28+
.nb-gradle/
29+
30+
### JetBrains template
31+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
32+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
33+
34+
# User-specific stuff
35+
.idea
36+
37+
# Gradle and Maven with auto-import
38+
# When using Gradle or Maven with auto-import, you should exclude module files,
39+
# since they will be recreated, and may cause churn. Uncomment if using
40+
# auto-import.
41+
# .idea/artifacts
42+
# .idea/compiler.xml
43+
# .idea/jarRepositories.xml
44+
# .idea/modules.xml
45+
# .idea/*.iml
46+
# .idea/modules
47+
# *.iml
48+
# *.ipr
49+
50+
# CMake
51+
cmake-build-*/
52+
53+
# Mongo Explorer plugin
54+
.idea/**/mongoSettings.xml
55+
56+
# File-based project format
57+
*.iws
58+
59+
# IntelliJ
60+
out/
61+
*.iml
62+
63+
# mpeltonen/sbt-idea plugin
64+
.idea_modules/
65+
66+
# JIRA plugin
67+
atlassian-ide-plugin.xml
68+
69+
# Cursive Clojure plugin
70+
.idea/replstate.xml
71+
72+
# SonarLint plugin
73+
.idea/sonarlint/
74+
75+
# Crashlytics plugin (for Android Studio and IntelliJ)
76+
com_crashlytics_export_strings.xml
77+
crashlytics.properties
78+
crashlytics-build.properties
79+
fabric.properties
80+
81+
# Editor-based Rest Client
82+
.idea/httpRequests
83+
84+
# Android studio 3.1+ serialized cache file
85+
.idea/caches/build_file_checksums.ser
86+
87+
### Eclipse template
88+
.metadata
89+
bin/
90+
tmp/
91+
*.tmp
92+
*.bak
93+
*.swp
94+
*~.nib
95+
local.properties
96+
.settings/
97+
.loadpath
98+
.recommenders
99+
100+
# External tool builders
101+
.externalToolBuilders/
102+
103+
# Locally stored "Eclipse launch configurations"
104+
*.launch
105+
106+
# PyDev specific (Python IDE for Eclipse)
107+
*.pydevproject
108+
109+
# CDT-specific (C/C++ Development Tooling)
110+
.cproject
111+
112+
# CDT- autotools
113+
.autotools
114+
115+
# Java annotation processor (APT)
116+
.factorypath
117+
118+
# PDT-specific (PHP Development Tools)
119+
.buildpath
120+
121+
# sbteclipse plugin
122+
.target
123+
124+
# Tern plugin
125+
.tern-project
126+
127+
# TeXlipse plugin
128+
.texlipse
129+
130+
# STS (Spring Tool Suite)
131+
.springBeans
132+
133+
# Code Recommenders
134+
.recommenders/
135+
136+
# Annotation Processing
137+
.apt_generated/
138+
.apt_generated_test/
139+
140+
# Scala IDE specific (Scala & Java development for Eclipse)
141+
.cache-main
142+
.scala_dependencies
143+
.worksheet
144+
145+
# Uncomment this line if you wish to ignore the project description file.
146+
# Typically, this file would be tracked if it contains build/dependency configurations:
147+
#.project
148+
149+
### Gradle template
150+
.gradle
151+
**/build/
152+
!src/**/build/
153+
154+
# Ignore Gradle GUI config
155+
gradle-app.setting
156+
157+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
158+
!gradle-wrapper.jar
159+
160+
# Avoid ignore Gradle wrappper properties
161+
!gradle-wrapper.properties
162+
163+
# Cache of project
164+
.gradletasknamecache
165+
166+
# Eclipse Gradle plugin generated files
167+
# Eclipse Core
168+
.project
169+
# JDT-specific (Eclipse Java Development Tools)
170+
.classpath

lib/paapi5-java-sdk-1.2.2.jar

284 KB
Binary file not shown.

0 commit comments

Comments
 (0)