File tree Expand file tree Collapse file tree 3 files changed +12
-12
lines changed
java/br/com/grupo63/techchallenge/payment/gateway/order Expand file tree Collapse file tree 3 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 172
172
<groupId >org.jacoco</groupId >
173
173
<artifactId >jacoco-maven-plugin</artifactId >
174
174
<version >0.8.11</version >
175
+ <configuration >
176
+ <excludes >
177
+ <exclude >**/br/com/grupo63/techchallenge/payment/api/controller/dto/PaymentStatusResponseDTO.class</exclude >
178
+ <exclude >**/br/com/grupo63/techchallenge/payment/api/controller/dto/QRCodeResponseDTO.class</exclude >
179
+ <exclude >**/br/com/grupo63/techchallenge/payment/gateway/order/dto/OrderDTO.java</exclude >
180
+ <exclude >**/br/com/grupo63/techchallenge/payment/gateway/payment/PaymentPersistenceEntity.class</exclude >
181
+ <exclude >**/br/com/grupo63/techchallenge/payment/gateway/payment/PaymentJpaAdapter.class</exclude >
182
+ <exclude >**/br/com/grupo63/techchallenge/payment/gateway/payment/MercadoPagoGateway.class</exclude >
183
+ <exclude >**/br/com/grupo63/techchallenge/payment/ServicePaymentApplication.class</exclude >
184
+ </excludes >
185
+ </configuration >
175
186
<executions >
176
187
<execution >
177
188
<id >prepare-agent</id >
185
196
<goal >report</goal >
186
197
</goals >
187
198
<configuration >
188
- <excludes >
189
- <exclude >**/br/com/grupo63/techchallenge/payment/api/controller/dto/PaymentStatusResponseDTO.class</exclude >
190
- <exclude >**/br/com/grupo63/techchallenge/payment/api/controller/dto/QRCodeResponseDTO.class</exclude >
191
- <exclude >**/br/com/grupo63/techchallenge/payment/gateway/order/dto/OrderDTO.class</exclude >
192
- <exclude >**/br/com/grupo63/techchallenge/payment/gateway/payment/PaymentPersistenceEntity.class</exclude >
193
- <exclude >**/br/com/grupo63/techchallenge/payment/gateway/payment/PaymentJpaAdapter.class</exclude >
194
- <exclude >**/br/com/grupo63/techchallenge/payment/ServicePaymentApplication.class</exclude >
195
- </excludes >
196
199
<formats >
197
200
<format >XML</format >
198
201
</formats >
Original file line number Diff line number Diff line change 8
8
9
9
import java .util .Optional ;
10
10
11
- @ FeignClient (name = "order" , url = "${soat-services.base-url} /orders}" )
11
+ @ FeignClient (name = "order" , url = "/orders}" )
12
12
public interface IOrderGateway {
13
13
14
14
@ RequestMapping (method = RequestMethod .GET , value = "/{orderId}" )
Original file line number Diff line number Diff line change 23
23
key :
24
24
public : " ${JWT_PUBLIC_KEY:MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqStd8n4SGNM0eZhV/hzU+urHA5/IMZPoP9YQ9ZcLKWiX33nI6bSuZMCrLZcJExf63xS+uxDpGxM8Mnk2zOdl+lPwANXLzP1us5P1PyA3YPycW9J7C5YTQW0GiEL3M93ZX7vMJiVoBYblP3JPlYnoYlBORuc0JPk33KtfEZP+78qXpPHM8imYrJLe8ceiDLLFDU/nh5KC2dWAy3ci1ahoJ1Q9ELhp3IZLvOTX57H/T2VKOYOya5+ST41h+JjzI+qGTVnLcKaW+k25YLlVnkSspvdx98+yQDi7kbOTS6yRZHUPD6wPk/nUozpD0nZKccoH4W+zMwmQVtsAA6JCA9gfGwIDAQAB}"
25
25
26
- soat-services :
27
- base-url : http://localhost:8585/public
28
-
You can’t perform that action at this time.
0 commit comments