File tree Expand file tree Collapse file tree 2 files changed +31
-4
lines changed
src/main/java/ru/shemplo/tbs Expand file tree Collapse file tree 2 files changed +31
-4
lines changed Original file line number Diff line number Diff line change 4
4
5
5
<groupId >ru.shemplo</groupId >
6
6
<artifactId >tinkoff-bond-scanner</artifactId >
7
- <version >0.0.1 </version >
7
+ <version >1.0 </version >
8
8
9
9
<properties >
10
10
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
11
+
12
+ <maven .compiler.source>16</maven .compiler.source>
13
+ <maven .compiler.target>16</maven .compiler.target>
11
14
<javafx .version>16</javafx .version>
12
15
</properties >
13
16
14
17
<build >
15
18
<plugins >
16
19
<plugin >
20
+ <groupId >org.apache.maven.plugins</groupId >
17
21
<artifactId >maven-compiler-plugin</artifactId >
18
22
<version >3.8.1</version >
19
23
<configuration >
20
- <release >16</release >
24
+ <compilerArgs >
25
+ <arg >--enable-preview</arg >
26
+ </compilerArgs >
21
27
</configuration >
22
28
</plugin >
29
+ <plugin >
30
+ <groupId >org.apache.maven.plugins</groupId >
31
+ <artifactId >maven-shade-plugin</artifactId >
32
+ <version >2.1</version >
33
+ <executions >
34
+ <execution >
35
+ <phase >package</phase >
36
+ <goals >
37
+ <goal >shade</goal >
38
+ </goals >
39
+ <configuration >
40
+ <transformers >
41
+ <transformer implementation =" org.apache.maven.plugins.shade.resource.ManifestResourceTransformer" >
42
+ <mainClass >ru.shemplo.tbs.RunTinkoffBondScanner</mainClass >
43
+ </transformer >
44
+ </transformers >
45
+ </configuration >
46
+ </execution >
47
+ </executions >
48
+ </plugin >
23
49
</plugins >
24
50
</build >
25
51
26
52
<dependencies >
27
53
<dependency >
28
54
<groupId >org.projectlombok</groupId >
29
55
<artifactId >lombok</artifactId >
30
- <version >1.18.6 </version >
56
+ <version >1.18.20 </version >
31
57
</dependency >
32
58
<dependency >
33
59
<groupId >org.slf4j</groupId >
Original file line number Diff line number Diff line change 9
9
import ru .tinkoff .invest .openapi .model .rest .Currency ;
10
10
11
11
@ Getter
12
+ @ Builder
12
13
@ ToString
13
- @ RequiredArgsConstructor ( onConstructor = @ __ ( @ Builder ))
14
+ @ RequiredArgsConstructor
14
15
public class TBSCustomProfile implements ITBSProfile {
15
16
16
17
private static final long serialVersionUID = 1L ;
You can’t perform that action at this time.
0 commit comments