Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
rajadilipkolli committed Dec 26, 2024
1 parent ba875f9 commit 89b9e48
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
8 changes: 4 additions & 4 deletions boot-chaos-monkey/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
<version>3.4.1</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.example.choasmonkey</groupId>
<artifactId>boot-choas-monkey</artifactId>
<groupId>com.example.chaosmonkey</groupId>
<artifactId>boot-chaos-monkey</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>boot-choas-monkey</name>
<description>Choas Engineering Principles implementation using spring boot</description>
<name>boot-chaos-monkey</name>
<description>chaos Engineering Principles implementation using spring boot</description>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
2 changes: 1 addition & 1 deletion httpClients/boot-rest-template/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@
<configuration>
<java>
<googleJavaFormat>
<version>1.25.0</version>
<version>1.25.2</version>
<style>AOSP</style>
</googleJavaFormat>
</java>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@

@SpringBootApplication
@EnableConfigurationProperties({ApplicationProperties.class})
public class Application {
public class RestTemplateApplication {

public static void main(String[] args) {
SpringApplication.run(Application.class, args);
SpringApplication.run(RestTemplateApplication.class, args);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@
import com.example.rest.template.common.ContainersConfig;
import org.springframework.boot.SpringApplication;

class TestApplication {
class TestRestTemplateApplication {

public static void main(String[] args) {
SpringApplication.from(Application::main).with(ContainersConfig.class).run(args);
SpringApplication.from(RestTemplateApplication::main)
.with(ContainersConfig.class)
.run(args);
}
}

0 comments on commit 89b9e48

Please sign in to comment.