Skip to content

Commit f8f6e7f

Browse files
committed
fix: ajuste no projeto
1 parent 2f04cb4 commit f8f6e7f

File tree

15 files changed

+979
-0
lines changed

15 files changed

+979
-0
lines changed

backend-mobile/.gitignore

Lines changed: 225 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,225 @@
1+
2+
# Created by https://www.gitignore.io/api/java,maven,eclipse,intellij,visualstudiocode
3+
# Edit at https://www.gitignore.io/?templates=java,maven,eclipse,intellij,visualstudiocode
4+
5+
.DS_Store
6+
7+
### Eclipse ###
8+
spring-boot-localstack.iml
9+
volume/
10+
obj/**
11+
.metadata
12+
*.bkp
13+
*.dtmp
14+
bin/
15+
tmp/
16+
logs/
17+
*.tmp
18+
*.bak
19+
*.swp
20+
*~.nib
21+
local.properties
22+
.settings/
23+
.loadpath
24+
.recommenders
25+
.classpath
26+
.project
27+
28+
# External tool builders
29+
.externalToolBuilders/
30+
31+
# Locally stored "Eclipse launch configurations"
32+
*.launch
33+
34+
# PyDev specific (Python IDE for Eclipse)
35+
*.pydevproject
36+
37+
# CDT-specific (C/C++ Development Tooling)
38+
.cproject
39+
40+
# CDT- autotools
41+
.autotools
42+
43+
# Java annotation processor (APT)
44+
.factorypath
45+
46+
# PDT-specific (PHP Development Tools)
47+
.buildpath
48+
49+
# sbteclipse plugin
50+
.target
51+
52+
# Tern plugin
53+
.tern-project
54+
55+
# TeXlipse plugin
56+
.texlipse
57+
58+
# STS (Spring Tool Suite)
59+
.springBeans
60+
61+
# Code Recommenders
62+
.recommenders/
63+
64+
# Annotation Processing
65+
.apt_generated/
66+
67+
# Scala IDE specific (Scala & Java development for Eclipse)
68+
.cache-main
69+
.scala_dependencies
70+
.worksheet
71+
72+
### Eclipse Patch ###
73+
# Eclipse Core
74+
.project
75+
76+
# JDT-specific (Eclipse Java Development Tools)
77+
.classpath
78+
79+
# Annotation Processing
80+
.apt_generated
81+
82+
.sts4-cache/
83+
84+
### Intellij ###
85+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
86+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
87+
88+
# User-specific stuff
89+
.idea/
90+
.idea/**/workspace.xml
91+
.idea/**/tasks.xml
92+
.idea/**/usage.statistics.xml
93+
.idea/**/dictionaries
94+
.idea/**/shelf
95+
96+
# Generated files
97+
.idea/**/contentModel.xml
98+
99+
# Sensitive or high-churn files
100+
.idea/**/dataSources/
101+
.idea/**/dataSources.ids
102+
.idea/**/dataSources.local.xml
103+
.idea/**/sqlDataSources.xml
104+
.idea/**/dynamic.xml
105+
.idea/**/uiDesigner.xml
106+
.idea/**/dbnavigator.xml
107+
108+
# Gradle
109+
.idea/**/gradle.xml
110+
.idea/**/libraries
111+
112+
# Gradle and Maven with auto-import
113+
# When using Gradle or Maven with auto-import, you should exclude module files,
114+
# since they will be recreated, and may cause churn. Uncomment if using
115+
# auto-import.
116+
# .idea/modules.xml
117+
# .idea/*.iml
118+
# .idea/modules
119+
# *.iml
120+
# *.ipr
121+
122+
# CMake
123+
cmake-build-*/
124+
125+
# Mongo Explorer plugin
126+
.idea/**/mongoSettings.xml
127+
128+
# File-based project format
129+
*.iws
130+
131+
# IntelliJ
132+
out/
133+
134+
# mpeltonen/sbt-idea plugin
135+
.idea_modules/
136+
137+
# JIRA plugin
138+
atlassian-ide-plugin.xml
139+
140+
# Cursive Clojure plugin
141+
.idea/replstate.xml
142+
143+
# Crashlytics plugin (for Android Studio and IntelliJ)
144+
com_crashlytics_export_strings.xml
145+
crashlytics.properties
146+
crashlytics-build.properties
147+
fabric.properties
148+
149+
# Editor-based Rest Client
150+
.idea/httpRequests
151+
152+
# Android studio 3.1+ serialized cache file
153+
.idea/caches/build_file_checksums.ser
154+
155+
### Intellij Patch ###
156+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
157+
158+
# *.iml
159+
# modules.xml
160+
# .idea/misc.xml
161+
# *.ipr
162+
163+
# Sonarlint plugin
164+
.idea/sonarlint
165+
166+
### Java ###
167+
# Compiled class file
168+
*.class
169+
170+
# Log file
171+
*.log
172+
173+
# BlueJ files
174+
*.ctxt
175+
176+
# Mobile Tools for Java (J2ME)
177+
.mtj.tmp/
178+
179+
# Package Files #
180+
*.jar
181+
*.war
182+
*.nar
183+
*.ear
184+
*.zip
185+
*.tar.gz
186+
*.rar
187+
188+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
189+
hs_err_pid*
190+
191+
### Maven ###
192+
target/
193+
pom.xml.tag
194+
pom.xml.releaseBackup
195+
pom.xml.versionsBackup
196+
pom.xml.next
197+
release.properties
198+
dependency-reduced-pom.xml
199+
buildNumber.properties
200+
.mvn/timing.properties
201+
.mvn/wrapper/maven-wrapper.jar
202+
203+
### VisualStudioCode ###
204+
.vscode/*
205+
!.vscode/settings.json
206+
!.vscode/tasks.json
207+
!.vscode/launch.json
208+
!.vscode/extensions.json
209+
210+
### VisualStudioCode Patch ###
211+
# Ignore all local history of files
212+
.history
213+
214+
# End of https://www.gitignore.io/api/java,maven,eclipse,intellij,visualstudiocode
215+
216+
### NetBeans ###
217+
**/nbproject/private/
218+
**/nbproject/Makefile-*.mk
219+
**/nbproject/Package-*.bash
220+
build/
221+
nbbuild/
222+
dist/
223+
nbdist/
224+
.nb-gradle/
225+
/aws/volume/
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.5/apache-maven-3.9.5-bin.zip
2+
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar

backend-mobile/README.MD

Whitespace-only changes.

0 commit comments

Comments
 (0)