Skip to content

Commit

Permalink
불필요한 파일 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
HwangHoYoon committed Dec 9, 2023
1 parent 02371aa commit b28ef45
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 9 deletions.
9 changes: 0 additions & 9 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -78,19 +78,10 @@ dependencies {
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.0.2'
implementation group: 'commons-codec', name: 'commons-codec', version: '1.15' // 또는 최신 버전

implementation 'org.springframework.cloud:spring-cloud-starter-openfeign'

}

ext {
set('springCloudVersion', "2021.0.5")
}

dependencyManagement {
imports {
mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
}
}

tasks.named('test') {
useJUnitPlatform()
Expand Down
45 changes: 45 additions & 0 deletions src/main/generated/com/chwipoClova/tmp/entity/QTmp.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
package com.chwipoClova.tmp.entity;

import static com.querydsl.core.types.PathMetadataFactory.*;

import com.querydsl.core.types.dsl.*;

import com.querydsl.core.types.PathMetadata;
import javax.annotation.processing.Generated;
import com.querydsl.core.types.Path;


/**
* QTmp is a Querydsl query type for Tmp
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QTmp extends EntityPathBase<Tmp> {

private static final long serialVersionUID = 1739213507L;

public static final QTmp tmp = new QTmp("tmp");

public final NumberPath<Long> fld01 = createNumber("fld01", Long.class);

public final StringPath fld02 = createString("fld02");

public final StringPath fld03 = createString("fld03");

public final StringPath fld04 = createString("fld04");

public final StringPath fld05 = createString("fld05");

public QTmp(String variable) {
super(Tmp.class, forVariable(variable));
}

public QTmp(Path<? extends Tmp> path) {
super(path.getType(), path.getMetadata());
}

public QTmp(PathMetadata metadata) {
super(Tmp.class, metadata);
}

}

0 comments on commit b28ef45

Please sign in to comment.