Compare commits

..

No commits in common. "9bb8c094787bb0210376075b748973983b5e646c" and "6b38a6dc62d77fb27a5b0f2fd5289d1d111399c4" have entirely different histories.

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.postgresql/postgresql -->
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.7.11</version>
<scope>compile</scope>
</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>
</dependencies>

View File

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