Skip to content

Commit 381d05d

Browse files
authored
Merge pull request microsoft#198 from gregturn/springboot-and-springdata
Add Spring Data JPA-based sample
2 parents ecf37e6 + 8d0e747 commit 381d05d

9 files changed

Lines changed: 777 additions & 0 deletions

File tree

samples/tutorials/java/.gitignore

Lines changed: 133 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,133 @@
1+
2+
# Created by https://www.gitignore.io/api/intellij,eclipse,java,maven,mac
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+
### Intellij ###
58+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
59+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
60+
61+
# User-specific stuff:
62+
.idea
63+
64+
## File-based project format:
65+
*.iws
66+
*.iml
67+
68+
## Plugin-specific files:
69+
70+
# IntelliJ
71+
/out/
72+
73+
# mpeltonen/sbt-idea plugin
74+
.idea_modules/
75+
76+
# JIRA plugin
77+
atlassian-ide-plugin.xml
78+
79+
# Crashlytics plugin (for Android Studio and IntelliJ)
80+
com_crashlytics_export_strings.xml
81+
crashlytics.properties
82+
crashlytics-build.properties
83+
fabric.properties
84+
85+
### Intellij Patch ###
86+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
87+
88+
# *.iml
89+
# modules.xml
90+
# .idea/misc.xml
91+
# *.ipr
92+
93+
### Java ###
94+
# Compiled class file
95+
*.class
96+
97+
# Log file
98+
*.log
99+
100+
# BlueJ files
101+
*.ctxt
102+
103+
# Mobile Tools for Java (J2ME)
104+
.mtj.tmp/
105+
106+
# Package Files #
107+
*.jar
108+
*.war
109+
*.ear
110+
*.zip
111+
*.tar.gz
112+
*.rar
113+
114+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
115+
hs_err_pid*
116+
117+
#!! ERROR: mac is undefined. Use list command to see defined gitignore types !!#
118+
119+
### Maven ###
120+
target/
121+
pom.xml.tag
122+
pom.xml.releaseBackup
123+
pom.xml.versionsBackup
124+
pom.xml.next
125+
release.properties
126+
dependency-reduced-pom.xml
127+
buildNumber.properties
128+
.mvn/timing.properties
129+
130+
# Exclude maven wrapper
131+
!/.mvn/wrapper/maven-wrapper.jar
132+
133+
# End of https://www.gitignore.io/api/intellij,eclipse,java,maven,mac

samples/tutorials/java/macOS/SqlServerSpringDataSample/mvnw

Lines changed: 233 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)