Compare commits

...

2 Commits

Author SHA1 Message Date
Isidoro Nevares Martín
9bb8c09478 Cambio clase principal
Some checks failed
Primer flujo de trabajo CI/CD (Build, Test and Push Docker Image) para Ampliación de Entornos de Desarrollo / build-and-push (push) Has been cancelled
2026-05-04 21:02:59 +02:00
Isidoro Nevares Martín
b2d2fc88ff Commit inicial 2026-05-04 20:56:21 +02:00
2 changed files with 9 additions and 9 deletions

14
pom.xml
View File

@ -40,13 +40,13 @@
</dependency>
<!-- Source: https://mvnrepository.com/artifact/org.mongodb/mongodb-driver-sync -->
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongodb-driver-sync</artifactId>
<version>5.6.5</version>
<scope>compile</scope>
</dependency>
<!-- Source: https://mvnrepository.com/artifact/org.postgresql/postgresql -->
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.7.11</version>
<scope>compile</scope>
</dependency>
</dependencies>

View File

@ -4,10 +4,10 @@ import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class AppHogwartsSB {
public class AppGobiernoSB {
public static void main(String[] args) {
SpringApplication.run(AppHogwartsSB.class, args);
SpringApplication.run(AppGobiernoSB.class, args);
}