File tree Expand file tree Collapse file tree 7 files changed +6
-16
lines changed
spring-boot-starter-api/spring-boot-starter-api-graphql/autoconfigure/src/main/java/tech/cassandre/trading/bot/configuration
spring-boot-starter-test/autoconfigure/src/main/java/tech/cassandre/trading/bot/util/mapper
spring-boot-starter/autoconfigure/src/main/java/tech/cassandre/trading/bot Expand file tree Collapse file tree 7 files changed +6
-16
lines changed Original file line number Diff line number Diff line change 168
168
</configuration >
169
169
</plugin >
170
170
<!-- GPG signing -->
171
- <!-- <plugin>
171
+ <plugin >
172
172
<groupId >org.apache.maven.plugins</groupId >
173
173
<artifactId >maven-gpg-plugin</artifactId >
174
174
<version >3.1.0</version >
180
180
<goal >sign</goal >
181
181
</goals >
182
182
<configuration >
183
- <!– Prevent `gpg` from using pinentry programs –>
183
+ <!-- Prevent `gpg` from using pinentry programs -->
184
184
<gpgArguments >
185
- <arg>-- pinentry-mode</arg>
185
+ <arg >-- pinentry-mode</arg >
186
186
<arg >loopback</arg >
187
187
</gpgArguments >
188
188
</configuration >
189
189
</execution >
190
190
</executions >
191
- </plugin>-->
191
+ </plugin >
192
192
</plugins >
193
193
</build >
194
194
<!-- =========================================================================================================== -->
Original file line number Diff line number Diff line change 18
18
@ Configuration
19
19
public class GraphQLAPISecurityConfiguration {
20
20
21
- /**
22
- * API Key.
23
- */
21
+ /** API Key. */
24
22
@ Value ("${cassandre.trading.bot.api.graphql.key:}" )
25
23
private String key ;
26
24
@@ -47,4 +45,5 @@ public SecurityFilterChain securityFilterChain(final HttpSecurity http) throws E
47
45
}
48
46
return http .build ();
49
47
}
48
+
50
49
}
Original file line number Diff line number Diff line change 2
2
3
3
import org .mapstruct .Mapper ;
4
4
import org .mapstruct .Mapping ;
5
- import org .mapstruct .MappingConstants ;
6
- import org .mapstruct .Named ;
7
5
import tech .cassandre .trading .bot .domain .BacktestingCandle ;
8
6
import tech .cassandre .trading .bot .domain .ImportedCandle ;
9
7
import tech .cassandre .trading .bot .dto .market .TickerDTO ;
Original file line number Diff line number Diff line change 26
26
import jakarta .persistence .OneToMany ;
27
27
import jakarta .persistence .OrderBy ;
28
28
import jakarta .persistence .Table ;
29
-
30
29
import java .time .OffsetDateTime ;
31
30
import java .util .LinkedHashSet ;
32
31
import java .util .Set ;
Original file line number Diff line number Diff line change 23
23
import jakarta .persistence .JoinColumn ;
24
24
import jakarta .persistence .ManyToOne ;
25
25
import jakarta .persistence .Table ;
26
-
27
26
import java .time .OffsetDateTime ;
28
27
29
28
import static jakarta .persistence .EnumType .STRING ;
Original file line number Diff line number Diff line change 11
11
import jakarta .persistence .Column ;
12
12
import jakarta .persistence .EntityListeners ;
13
13
import jakarta .persistence .MappedSuperclass ;
14
-
15
14
import java .time .OffsetDateTime ;
16
15
17
16
/**
Original file line number Diff line number Diff line change 9
9
import tech .cassandre .trading .bot .dto .util .CurrencyAmountDTO ;
10
10
import tech .cassandre .trading .bot .dto .util .CurrencyPairDTO ;
11
11
12
- import java .time .OffsetDateTime ;
13
- import java .time .ZoneId ;
14
- import java .util .Date ;
15
-
16
12
import static org .mapstruct .NullValuePropertyMappingStrategy .IGNORE ;
17
13
18
14
/**
You can’t perform that action at this time.
0 commit comments