Skip to content

Commit e833a1d

Browse files
authored
Merge pull request #15 from dokan-dev/develop
Migrate Master Branch to new java wrapper
2 parents f3f6756 + 94bc4fb commit e833a1d

105 files changed

Lines changed: 30061 additions & 6112 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 42 additions & 136 deletions
Original file line numberDiff line numberDiff line change
@@ -1,145 +1,51 @@
1-
2-
# Created by https://www.gitignore.io/api/eclipse,intellij,java,gradle
3-
4-
### Eclipse ###
5-
6-
.metadata
7-
bin/
8-
tmp/
9-
*.tmp
10-
*.bak
11-
*.swp
12-
*~.nib
13-
local.properties
14-
.settings/
15-
.loadpath
16-
.recommenders
17-
18-
# Eclipse Core
19-
.project
20-
21-
# External tool builders
22-
.externalToolBuilders/
23-
24-
# Locally stored "Eclipse launch configurations"
25-
*.launch
26-
27-
# PyDev specific (Python IDE for Eclipse)
28-
*.pydevproject
29-
30-
# CDT-specific (C/C++ Development Tooling)
31-
.cproject
32-
33-
# JDT-specific (Eclipse Java Development Tools)
34-
.classpath
35-
36-
# Java annotation processor (APT)
37-
.factorypath
38-
39-
# PDT-specific (PHP Development Tools)
40-
.buildpath
41-
42-
# sbteclipse plugin
43-
.target
44-
45-
# Tern plugin
46-
.tern-project
47-
48-
# TeXlipse plugin
49-
.texlipse
50-
51-
# STS (Spring Tool Suite)
52-
.springBeans
53-
54-
# Code Recommenders
55-
.recommenders/
56-
57-
58-
### Intellij ###
59-
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
60-
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
61-
62-
# User-specific stuff:
63-
.idea/workspace.xml
64-
.idea/tasks.xml
65-
66-
# Sensitive or high-churn files:
67-
.idea/dataSources/
68-
.idea/dataSources.ids
69-
.idea/dataSources.xml
70-
.idea/dataSources.local.xml
71-
.idea/sqlDataSources.xml
72-
.idea/dynamic.xml
73-
.idea/uiDesigner.xml
74-
75-
# Gradle:
76-
.idea/gradle.xml
77-
.idea/libraries
78-
79-
# Mongo Explorer plugin:
80-
.idea/mongoSettings.xml
81-
82-
## File-based project format:
83-
*.iws
84-
85-
## Plugin-specific files:
86-
87-
# IntelliJ
88-
/out/
89-
90-
# mpeltonen/sbt-idea plugin
91-
.idea_modules/
92-
93-
# JIRA plugin
94-
atlassian-ide-plugin.xml
95-
96-
# Crashlytics plugin (for Android Studio and IntelliJ)
97-
com_crashlytics_export_strings.xml
98-
crashlytics.properties
99-
crashlytics-build.properties
100-
fabric.properties
101-
102-
### Intellij Patch ###
103-
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
104-
105-
# *.iml
106-
# modules.xml
107-
# .idea/misc.xml
108-
# *.ipr
109-
110-
111-
### Java ###
1+
#build directory
2+
build/
3+
4+
# IntelliJ IDEA
5+
# User-specific stuff
6+
.idea/**/workspace.xml
7+
.idea/**/tasks.xml
8+
.idea/**/usage.statistics.xml
9+
.idea/**/dictionaries
10+
.idea/**/shelf
11+
12+
## Generated files
13+
.idea/**/contentModel.xml
14+
15+
## Gradle
16+
.idea/**/gradle.xml
17+
.idea/**/libraries
18+
19+
# Gradle and Maven with auto-import
20+
# When using Gradle or Maven with auto-import, you should exclude module files,
21+
# since they will be recreated, and may cause churn. Uncomment if using
22+
# auto-import.
23+
.idea/modules.xml
24+
.idea/*.iml
25+
.idea/modules
26+
27+
# Java
28+
## Compiled class file
11229
*.class
11330

114-
# BlueJ files
115-
*.ctxt
116-
117-
# Mobile Tools for Java (J2ME)
118-
.mtj.tmp/
31+
## virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
32+
hs_err_pid*
11933

120-
# Package Files #
34+
## Package Files #
12135
*.jar
12236
*.war
37+
*.nar
12338
*.ear
39+
*.zip
40+
*.tar.gz
41+
*.rar
12442

125-
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
126-
hs_err_pid*
127-
128-
129-
### Gradle ###
130-
.gradle
131-
/build/
132-
133-
# Ignore Gradle GUI config
134-
gradle-app.setting
135-
136-
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
137-
!gradle-wrapper.jar
138-
139-
# Cache of project
140-
.gradletasknamecache
43+
# Misc
44+
## Log file
45+
*.log
14146

142-
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
143-
# gradle/wrapper/gradle-wrapper.properties
14447

145-
# End of https://www.gitignore.io/api/eclipse,intellij,java,gradle
48+
# Gradle
49+
# gradle directory
50+
.gradle/*
51+
!gradle/

.idea/compiler.xml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)