Compare commits

..

No commits in common. "master" and "TestBranch" have entirely different histories.

23 changed files with 80 additions and 7 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 107 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 105 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 548 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 77 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 839 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 79 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

0
microservice-commandes/mvnw vendored Normal file → Executable file
View File

View File

@ -14,7 +14,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.6.1</version>
<version>2.6.1</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>

View File

@ -1,5 +1,9 @@
server.port=9002
server.port 9002
#Configurations H2
spring.jpa.show-sql=true
spring.h2.console.enabled=true
#défini l'encodage pour data.sql
spring.datasource.sql-script-encoding=UTF-8

View File

@ -0,0 +1,16 @@
package com.mcommandes;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
public class McommandesApplicationTests {
@Test
public void contextLoads() {
}
}

View File

@ -0,0 +1,16 @@
package com.mpayement;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
public class MpayementApplicationTests {
@Test
public void contextLoads() {
}
}

0
microservice-paiement/mvnw vendored Normal file → Executable file
View File

View File

@ -14,7 +14,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.6.1</version>
<version>2.6.1</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>

View File

@ -1,6 +1,9 @@
server.port=9003
server.port 9003
#Configurations H2
spring.jpa.show-sql=true
spring.h2.console.enabled=true
#défini l'encodage pour data.sql
spring.datasource.sql-script-encoding=UTF-8

View File

@ -0,0 +1,16 @@
package com.mpaiement;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
public class MpaiementApplicationTests {
@Test
public void contextLoads() {
}
}

0
microservice-produits/mvnw vendored Normal file → Executable file
View File

View File

@ -14,7 +14,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.6.1</version>
<version>2.6.1</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>

View File

@ -1,7 +1,9 @@
server.port=9001
server.port 9001
#Configurations H2
spring.jpa.show-sql=true
spring.h2.console.enabled=true
#défini l'encodage pour data.sql
spring.datasource.sql-script-encoding=UTF-8

View File

@ -0,0 +1,16 @@
package com.mproduits;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
public class MproduitsApplicationTests {
@Test
public void contextLoads() {
}
}