Skip to content

Commit c61090c

Browse files
committed
Merge branch 'ft/refactor' of https://github.com/Outfit-Lab-TPI/backend into deploy/expo
2 parents f9acf89 + b3154af commit c61090c

File tree

208 files changed

+3253
-942
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

208 files changed

+3253
-942
lines changed

pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,13 @@
9494
<artifactId>spring-dotenv</artifactId>
9595
<version>3.0.0</version>
9696
</dependency>
97+
<dependency>
98+
<groupId>junit</groupId>
99+
<artifactId>junit</artifactId>
100+
<version>4.13.2</version>
101+
<scope>test</scope>
102+
</dependency>
103+
97104
</dependencies>
98105

99106
<build>
@@ -121,6 +128,9 @@
121128
<groupId>org.springframework.boot</groupId>
122129
<artifactId>spring-boot-maven-plugin</artifactId>
123130
</plugin>
131+
132+
133+
124134
</plugins>
125135
</build>
126136

src/main/java/com/outfitlab/project/ProjectApplication.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import org.springframework.data.jpa.repository.config.EnableJpaRepositories;
66

77
@SpringBootApplication
8-
@EnableJpaRepositories(basePackages = "com.outfitlab.project.domain.repositories")
8+
@EnableJpaRepositories(basePackages = "com.outfitlab.project.infrastructure.repositories.interfaces")
99
public class ProjectApplication {
1010

1111
public static void main(String[] args) {

src/main/java/com/outfitlab/project/domain/entities/Marca.java

Lines changed: 0 additions & 45 deletions
This file was deleted.

src/main/java/com/outfitlab/project/domain/entities/TripoModel.java

Lines changed: 0 additions & 80 deletions
This file was deleted.

src/main/java/com/outfitlab/project/domain/entities/User.java

Lines changed: 0 additions & 16 deletions
This file was deleted.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
package com.outfitlab.project.domain.exceptions;
2+
3+
public class ErroBytesException extends Throwable {
4+
public ErroBytesException(String s) {
5+
super(s);
6+
}
7+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
package com.outfitlab.project.domain.exceptions;
2+
3+
public class ErrorGenerateGlbException extends Throwable {
4+
public ErrorGenerateGlbException(String msj) {
5+
super(msj);
6+
}
7+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
package com.outfitlab.project.domain.exceptions;
2+
3+
public class ErrorGlbGenerateTimeExpiredException extends Throwable {
4+
public ErrorGlbGenerateTimeExpiredException(String msj) {
5+
super(msj);
6+
}
7+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
package com.outfitlab.project.domain.exceptions;
2+
3+
public class ErrorReadJsonException extends Throwable {
4+
public ErrorReadJsonException(String msj) {
5+
super(msj);
6+
}
7+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
package com.outfitlab.project.domain.exceptions;
2+
3+
public class ErrorTripoEntityNotFound extends Throwable {
4+
public ErrorTripoEntityNotFound(String msj) {
5+
super(msj);
6+
}
7+
}

0 commit comments

Comments
 (0)