-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
commit inicial #4
Open
nieri
wants to merge
1
commit into
b2w-marketplace:master
Choose a base branch
from
nieri:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Acho que me incluiram por engano
2017-01-30 15:27 GMT-02:00 Murilo Niéri <notifications@github.com>:
… commit com o desenvolvimento do teste
------------------------------
You can view, comment on, or merge this pull request online at:
#4
Commit Summary
- commit inicial
File Changes
- *A* .gitignore
<https://github.com/b2w-marketplace/challenge-backend/pull/4/files#diff-0>
(9)
- *A* .idea/vcs.xml
<https://github.com/b2w-marketplace/challenge-backend/pull/4/files#diff-1>
(6)
- *M* README.md
<https://github.com/b2w-marketplace/challenge-backend/pull/4/files#diff-2>
(25)
- *A* chalenge-backend/pom.xml
<https://github.com/b2w-marketplace/challenge-backend/pull/4/files#diff-3>
(252)
- *A* chalenge-backend/src/main/java/br/com/munieri/boot/Main.java
<https://github.com/b2w-marketplace/challenge-backend/pull/4/files#diff-4>
(13)
- *A* chalenge-backend/src/main/java/br/com/munieri/boot/
database/DatabaseInitializer.java
<https://github.com/b2w-marketplace/challenge-backend/pull/4/files#diff-5>
(86)
- *A* chalenge-backend/src/main/java/br/com/munieri/boot/environment/
ApplicationInitializer.java
<https://github.com/b2w-marketplace/challenge-backend/pull/4/files#diff-6>
(102)
- *A* chalenge-backend/src/main/java/br/com/munieri/boot/
environment/staging/StagingApplicationInitializer.java
<https://github.com/b2w-marketplace/challenge-backend/pull/4/files#diff-7>
(11)
- *A* chalenge-backend/src/main/java/br/com/munieri/boot/
server/ApplicationServer.java
<https://github.com/b2w-marketplace/challenge-backend/pull/4/files#diff-8>
(100)
- *A* chalenge-backend/src/main/java/br/com/munieri/boot/
server/WebServer.java
<https://github.com/b2w-marketplace/challenge-backend/pull/4/files#diff-9>
(34)
- *A* chalenge-backend/src/main/java/br/com/munieri/domain/
dimension/Dimension.java
<https://github.com/b2w-marketplace/challenge-backend/pull/4/files#diff-10>
(13)
- *A* chalenge-backend/src/main/java/br/com/munieri/domain/
item/Item.java
<https://github.com/b2w-marketplace/challenge-backend/pull/4/files#diff-11>
(20)
- *A* chalenge-backend/src/main/java/br/com/munieri/domain/
item/ItemNotFound.java
<https://github.com/b2w-marketplace/challenge-backend/pull/4/files#diff-12>
(4)
- *A* chalenge-backend/src/main/java/br/com/munieri/domain/
item/service/ItemService.java
<https://github.com/b2w-marketplace/challenge-backend/pull/4/files#diff-13>
(11)
- *A* chalenge-backend/src/main/java/br/com/munieri/domain/
item/service/ItemServiceImpl.java
<https://github.com/b2w-marketplace/challenge-backend/pull/4/files#diff-14>
(28)
- *A* chalenge-backend/src/main/java/br/com/munieri/
infrastructure/repository/dimension/DimensionEntity.java
<https://github.com/b2w-marketplace/challenge-backend/pull/4/files#diff-15>
(108)
- *A* chalenge-backend/src/main/java/br/com/munieri/
infrastructure/repository/dimension/DimensionRepository.java
<https://github.com/b2w-marketplace/challenge-backend/pull/4/files#diff-16>
(6)
- *A* chalenge-backend/src/main/java/br/com/munieri/
infrastructure/repository/item/ItemEntity.java
<https://github.com/b2w-marketplace/challenge-backend/pull/4/files#diff-17>
(95)
- *A* chalenge-backend/src/main/java/br/com/munieri/
infrastructure/repository/item/ItemRepository.java
<https://github.com/b2w-marketplace/challenge-backend/pull/4/files#diff-18>
(6)
- *A* chalenge-backend/src/main/java/br/com/munieri/
infrastructure/repository/item/ItemRepositoryCuston.java
<https://github.com/b2w-marketplace/challenge-backend/pull/4/files#diff-19>
(11)
- *A* chalenge-backend/src/main/java/br/com/munieri/
infrastructure/repository/item/ItemRepositoryImpl.java
<https://github.com/b2w-marketplace/challenge-backend/pull/4/files#diff-20>
(26)
- *A* chalenge-backend/src/main/java/br/com/munieri/util/DateUtil.java
<https://github.com/b2w-marketplace/challenge-backend/pull/4/files#diff-21>
(34)
- *A* chalenge-backend/src/main/java/br/com/munieri/view/
endpoint/DimensionDTO.java
<https://github.com/b2w-marketplace/challenge-backend/pull/4/files#diff-22>
(51)
- *A* chalenge-backend/src/main/java/br/com/munieri/view/
endpoint/ErrorDTO.java
<https://github.com/b2w-marketplace/challenge-backend/pull/4/files#diff-23>
(28)
- *A* chalenge-backend/src/main/java/br/com/munieri/view/
endpoint/ItemDTO.java
<https://github.com/b2w-marketplace/challenge-backend/pull/4/files#diff-24>
(60)
- *A* chalenge-backend/src/main/java/br/com/munieri/view/
endpoint/ItemEndpoint.java
<https://github.com/b2w-marketplace/challenge-backend/pull/4/files#diff-25>
(48)
- *A* chalenge-backend/src/main/resources/application-dev.properties
<https://github.com/b2w-marketplace/challenge-backend/pull/4/files#diff-26>
(12)
- *A* chalenge-backend/src/main/resources/log4j2.xml
<https://github.com/b2w-marketplace/challenge-backend/pull/4/files#diff-27>
(50)
- *A* chalenge-backend/src/test/java/br/com/munieri/domain/
item/service/ItemServiceTest.java
<https://github.com/b2w-marketplace/challenge-backend/pull/4/files#diff-28>
(67)
- *A* chalenge-backend/src/test/java/integration/ItemEndpointIT.java
<https://github.com/b2w-marketplace/challenge-backend/pull/4/files#diff-29>
(41)
- *A* chalenge-backend/src/test/java/integration/shared/
IntegrationServer.java
<https://github.com/b2w-marketplace/challenge-backend/pull/4/files#diff-30>
(24)
- *A* chalenge-backend/src/test/resources/log4j2.xml
<https://github.com/b2w-marketplace/challenge-backend/pull/4/files#diff-31>
(50)
Patch Links:
- https://github.com/b2w-marketplace/challenge-backend/pull/4.patch
- https://github.com/b2w-marketplace/challenge-backend/pull/4.diff
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#4>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AFE-pw5IecR34xEdTo7UZWCMYhCAVy2tks5rXh13gaJpZM4LxruU>
.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
commit com o desenvolvimento do teste