Skip to content
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

[chore #47] gradle setting 변경 - 초기버전 #55

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ build/
.DS_Store

### IDEA ###
.idea
/.idea/
Empty file modified .idea/.gitignore
100644 → 100755
Empty file.
Empty file modified .idea/inspectionProfiles/Project_Default.xml
100644 → 100755
Empty file.
Empty file modified .idea/jpa-buddy.xml
100644 → 100755
Empty file.
5 changes: 3 additions & 2 deletions .idea/misc.xml
100644 → 100755

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Empty file modified .idea/vcs.xml
100644 → 100755
Empty file.
37 changes: 0 additions & 37 deletions auction-service/.gitignore

This file was deleted.

Empty file modified auction-service/build.gradle
100644 → 100755
Empty file.
Binary file removed auction-service/gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
12 changes: 0 additions & 12 deletions auction-service/gradle/wrapper/gradle-wrapper.properties

This file was deleted.

279 changes: 0 additions & 279 deletions auction-service/gradlew

This file was deleted.

1 change: 0 additions & 1 deletion auction-service/settings.gradle

This file was deleted.

Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import org.hibernate.boot.model.naming.Identifier;
import org.hibernate.engine.jdbc.env.spi.JdbcEnvironment;


import java.util.Locale;

public class CustomCamelCaseToSnakeAndLowerCaseStrategy extends CamelCaseToUnderscoresNamingStrategy {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,14 @@
import com.farmted.auctionservice.dto.responseDto.AuctionSellerResponseDto;
import com.farmted.auctionservice.service.AuctionService;
import lombok.RequiredArgsConstructor;
import org.apache.coyote.Response;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestHeader;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import java.util.List;

Expand Down
7 changes: 6 additions & 1 deletion auction-service/src/main/java/com/farmted/auctionservice/domain/Auction.java
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
package com.farmted.auctionservice.domain;

import jakarta.persistence.*;
import jakarta.persistence.Column;
import jakarta.persistence.Entity;
import jakarta.persistence.GeneratedValue;
import jakarta.persistence.GenerationType;
import jakarta.persistence.Id;
import jakarta.persistence.PrePersist;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Getter;
Expand Down
Empty file.
Empty file.
Loading