Skip to content

Commit 6be6078

Browse files
Merge pull request #1 from TakayukiHoshi1984/dev/v1.9.0
スケルトンコード生成ツール本体の改善
2 parents b876a6c + 25324c8 commit 6be6078

223 files changed

Lines changed: 35995 additions & 1091 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: 116 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,116 @@
1+
2+
# Created by https://www.gitignore.io/api/java,intellij
3+
# Edit at https://www.gitignore.io/?templates=java,intellij
4+
5+
### DeviceConnect ###
6+
modules/deviceconnect-codegen/target/
7+
target/
8+
9+
### Intellij ###
10+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
11+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
12+
13+
# User-specific stuff
14+
.idea/**/workspace.xml
15+
.idea/**/tasks.xml
16+
.idea/**/usage.statistics.xml
17+
.idea/**/dictionaries
18+
.idea/**/shelf
19+
20+
# Generated files
21+
.idea/**/contentModel.xml
22+
23+
# Sensitive or high-churn files
24+
.idea/**/dataSources/
25+
.idea/**/dataSources.ids
26+
.idea/**/dataSources.local.xml
27+
.idea/**/sqlDataSources.xml
28+
.idea/**/dynamic.xml
29+
.idea/**/uiDesigner.xml
30+
.idea/**/dbnavigator.xml
31+
32+
# Gradle
33+
.idea/**/gradle.xml
34+
.idea/**/libraries
35+
36+
# Gradle and Maven with auto-import
37+
# When using Gradle or Maven with auto-import, you should exclude module files,
38+
# since they will be recreated, and may cause churn. Uncomment if using
39+
# auto-import.
40+
# .idea/modules.xml
41+
# .idea/*.iml
42+
# .idea/modules
43+
44+
# CMake
45+
cmake-build-*/
46+
47+
# Mongo Explorer plugin
48+
.idea/**/mongoSettings.xml
49+
50+
# File-based project format
51+
*.iws
52+
53+
# IntelliJ
54+
out/
55+
56+
# mpeltonen/sbt-idea plugin
57+
.idea_modules/
58+
59+
# JIRA plugin
60+
atlassian-ide-plugin.xml
61+
62+
# Cursive Clojure plugin
63+
.idea/replstate.xml
64+
65+
# Crashlytics plugin (for Android Studio and IntelliJ)
66+
com_crashlytics_export_strings.xml
67+
crashlytics.properties
68+
crashlytics-build.properties
69+
fabric.properties
70+
71+
# Editor-based Rest Client
72+
.idea/httpRequests
73+
74+
# Android studio 3.1+ serialized cache file
75+
.idea/caches/build_file_checksums.ser
76+
77+
# JetBrains templates
78+
**___jb_tmp___
79+
80+
### Intellij Patch ###
81+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
82+
83+
# *.iml
84+
# modules.xml
85+
# .idea/misc.xml
86+
# *.ipr
87+
88+
# Sonarlint plugin
89+
.idea/sonarlint
90+
91+
### Java ###
92+
# Compiled class file
93+
*.class
94+
95+
# Log file
96+
*.log
97+
98+
# BlueJ files
99+
*.ctxt
100+
101+
# Mobile Tools for Java (J2ME)
102+
.mtj.tmp/
103+
104+
# Package Files #
105+
*.jar
106+
*.war
107+
*.nar
108+
*.ear
109+
*.zip
110+
*.tar.gz
111+
*.rar
112+
113+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
114+
hs_err_pid*
115+
116+
# End of https://www.gitignore.io/api/java,intellij

.idea/.name

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

.idea/compiler.xml

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

.idea/markdown-exported-files.xml

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

.idea/markdown-navigator.xml

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

.idea/markdown-navigator/profiles_settings.xml

Lines changed: 3 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: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.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/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)