|
9 | 9 | <version>0.0.1-SNAPSHOT</version>
|
10 | 10 | </parent>
|
11 | 11 |
|
12 |
| - <artifactId>capa-bff-domain</artifactId> |
| 12 | + <artifactId>bff</artifactId> |
| 13 | + <packaging>war</packaging> |
13 | 14 |
|
14 | 15 | <dependencies>
|
| 16 | + <dependency> |
| 17 | + <groupId>org.springframework.boot</groupId> |
| 18 | + <artifactId>spring-boot-starter-test</artifactId> |
| 19 | + <scope>test</scope> |
| 20 | + <exclusions> |
| 21 | + <exclusion> |
| 22 | + <artifactId>junit-jupiter</artifactId> |
| 23 | + <groupId>org.junit.jupiter</groupId> |
| 24 | + </exclusion> |
| 25 | + <exclusion> |
| 26 | + <artifactId>junit-vintage-engine</artifactId> |
| 27 | + <groupId>org.junit.vintage</groupId> |
| 28 | + </exclusion> |
| 29 | + <exclusion> |
| 30 | + <artifactId>mockito-junit-jupiter</artifactId> |
| 31 | + <groupId>org.mockito</groupId> |
| 32 | + </exclusion> |
| 33 | + </exclusions> |
| 34 | + </dependency> |
| 35 | + <dependency> |
| 36 | + <groupId>com.google.guava</groupId> |
| 37 | + <artifactId>guava</artifactId> |
| 38 | + </dependency> |
| 39 | + <dependency> |
| 40 | + <groupId>com.alibaba</groupId> |
| 41 | + <artifactId>fastjson</artifactId> |
| 42 | + </dependency> |
| 43 | + <dependency> |
| 44 | + <groupId>org.junit.jupiter</groupId> |
| 45 | + <artifactId>junit-jupiter-api</artifactId> |
| 46 | + <version>5.4.2</version> |
| 47 | + <scope>test</scope> |
| 48 | + </dependency> |
| 49 | + <dependency> |
| 50 | + <groupId>org.junit.jupiter</groupId> |
| 51 | + <artifactId>junit-jupiter-engine</artifactId> |
| 52 | + <version>5.4.2</version> |
| 53 | + <scope>test</scope> |
| 54 | + </dependency> |
| 55 | + <dependency> |
| 56 | + <groupId>io.projectreactor</groupId> |
| 57 | + <artifactId>reactor-test</artifactId> |
| 58 | + <scope>test</scope> |
| 59 | + </dependency> |
| 60 | + <dependency> |
| 61 | + <groupId>com.github.kevinsawicki</groupId> |
| 62 | + <artifactId>http-request</artifactId> |
| 63 | + <version>6.0</version> |
| 64 | + <scope>test</scope> |
| 65 | + </dependency> |
| 66 | + <dependency> |
| 67 | + <groupId>com.google.code.findbugs</groupId> |
| 68 | + <artifactId>findbugs-annotations</artifactId> |
| 69 | + <scope>provided</scope> |
| 70 | + </dependency> |
15 | 71 | <dependency>
|
16 | 72 | <groupId>org.springframework.boot</groupId>
|
17 | 73 | <artifactId>spring-boot-starter-web</artifactId>
|
|
20 | 76 | <groupId>org.springframework.boot</groupId>
|
21 | 77 | <artifactId>spring-boot-starter-webflux</artifactId>
|
22 | 78 | </dependency>
|
23 |
| - |
24 | 79 | <dependency>
|
25 | 80 | <groupId>group.rxcloud</groupId>
|
26 | 81 | <artifactId>capa-sdk</artifactId>
|
|
38 | 93 | <groupId>org.antlr</groupId>
|
39 | 94 | <artifactId>antlr4</artifactId>
|
40 | 95 | </dependency>
|
41 |
| - <dependency> |
42 |
| - <groupId>com.alibaba</groupId> |
43 |
| - <artifactId>fastjson</artifactId> |
44 |
| - </dependency> |
45 | 96 | <dependency>
|
46 | 97 | <groupId>org.junit.jupiter</groupId>
|
47 | 98 | <artifactId>junit-jupiter</artifactId>
|
48 | 99 | <version>5.8.1</version>
|
49 | 100 | <scope>test</scope>
|
50 | 101 | </dependency>
|
51 |
| - <dependency> |
52 |
| - <groupId>io.projectreactor</groupId> |
53 |
| - <artifactId>reactor-test</artifactId> |
54 |
| - <scope>test</scope> |
55 |
| - </dependency> |
56 |
| - <!-- https://mvnrepository.com/artifact/com.squareup.okhttp/okhttp --> |
57 | 102 | <dependency>
|
58 | 103 | <groupId>com.squareup.okhttp</groupId>
|
59 | 104 | <artifactId>okhttp</artifactId>
|
60 | 105 | <version>2.7.5</version>
|
61 | 106 | </dependency>
|
62 |
| - <dependency> |
63 |
| - <groupId>org.springframework.boot</groupId> |
64 |
| - <artifactId>spring-boot-starter-test</artifactId> |
65 |
| - <scope>test</scope> |
66 |
| - </dependency> |
67 |
| - <dependency> |
68 |
| - <groupId>com.google.code.findbugs</groupId> |
69 |
| - <artifactId>findbugs-annotations</artifactId> |
70 |
| - <scope>provided</scope> |
71 |
| - </dependency> |
72 | 107 | </dependencies>
|
73 | 108 |
|
74 | 109 | <build>
|
|
106 | 141 | </execution>
|
107 | 142 | </executions>
|
108 | 143 | </plugin>
|
109 |
| -<!-- <plugin>--> |
110 |
| -<!-- <artifactId>maven-checkstyle-plugin</artifactId>--> |
111 |
| -<!-- <executions>--> |
112 |
| -<!-- <execution>--> |
113 |
| -<!-- <id>verify</id>--> |
114 |
| -<!-- <phase>verify</phase>--> |
115 |
| -<!-- <goals>--> |
116 |
| -<!-- <goal>check</goal>--> |
117 |
| -<!-- </goals>--> |
118 |
| -<!-- </execution>--> |
119 |
| -<!-- </executions>--> |
120 |
| -<!-- </plugin>--> |
| 144 | + <!-- <plugin>--> |
| 145 | + <!-- <artifactId>maven-checkstyle-plugin</artifactId>--> |
| 146 | + <!-- <executions>--> |
| 147 | + <!-- <execution>--> |
| 148 | + <!-- <id>verify</id>--> |
| 149 | + <!-- <phase>verify</phase>--> |
| 150 | + <!-- <goals>--> |
| 151 | + <!-- <goal>check</goal>--> |
| 152 | + <!-- </goals>--> |
| 153 | + <!-- </execution>--> |
| 154 | + <!-- </executions>--> |
| 155 | + <!-- </plugin>--> |
121 | 156 | <plugin>
|
122 | 157 | <groupId>org.jacoco</groupId>
|
123 | 158 | <artifactId>jacoco-maven-plugin</artifactId>
|
|
0 commit comments