|
26 | 26 |
|
27 | 27 | <modelVersion>4.0.0</modelVersion> |
28 | 28 |
|
29 | | - <artifactId>hertzbeat-common</artifactId> |
| 29 | + <artifactId>hertzbeat-common-core</artifactId> |
30 | 30 | <name>${project.artifactId}</name> |
31 | 31 |
|
32 | 32 | <dependencies> |
33 | | - <!-- spring --> |
34 | | - <dependency> |
35 | | - <groupId>org.springframework.boot</groupId> |
36 | | - <artifactId>spring-boot-starter-web</artifactId> |
37 | | - <scope>provided</scope> |
38 | | - </dependency> |
39 | | - <dependency> |
40 | | - <groupId>org.springframework.boot</groupId> |
41 | | - <artifactId>spring-boot-configuration-processor</artifactId> |
42 | | - <optional>true</optional> |
43 | | - </dependency> |
44 | | - <dependency> |
45 | | - <groupId>org.springframework.boot</groupId> |
46 | | - <artifactId>spring-boot-autoconfigure</artifactId> |
47 | | - </dependency> |
48 | | - <!-- jpa --> |
49 | | - <dependency> |
50 | | - <groupId>org.eclipse.persistence</groupId> |
51 | | - <artifactId>org.eclipse.persistence.jpa</artifactId> |
52 | | - <version>${eclipse-jpa.version}</version> |
53 | | - </dependency> |
54 | | - <dependency> |
55 | | - <groupId>org.springframework.boot</groupId> |
56 | | - <artifactId>spring-boot-starter-data-jpa</artifactId> |
57 | | - <exclusions> |
58 | | - <exclusion> |
59 | | - <groupId>org.hibernate.orm</groupId> |
60 | | - <artifactId>hibernate-core</artifactId> |
61 | | - </exclusion> |
62 | | - </exclusions> |
63 | | - </dependency> |
64 | | - <!-- validation --> |
65 | | - <dependency> |
66 | | - <groupId>org.springframework.boot</groupId> |
67 | | - <artifactId>spring-boot-starter-validation</artifactId> |
68 | | - </dependency> |
69 | | - <!-- jackson --> |
70 | | - <dependency> |
71 | | - <groupId>com.fasterxml.jackson.core</groupId> |
72 | | - <artifactId>jackson-annotations</artifactId> |
73 | | - <scope>provided</scope> |
74 | | - </dependency> |
75 | | - <dependency> |
76 | | - <groupId>com.fasterxml.jackson.dataformat</groupId> |
77 | | - <artifactId>jackson-dataformat-xml</artifactId> |
78 | | - </dependency> |
79 | | - <!-- swagger --> |
80 | | - <dependency> |
81 | | - <groupId>org.springdoc</groupId> |
82 | | - <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId> |
83 | | - <scope>provided</scope> |
84 | | - </dependency> |
85 | 33 | <!-- Tool dependencies --> |
86 | 34 | <dependency> |
87 | 35 | <groupId>com.google.guava</groupId> |
|
187 | 135 | <groupId>com.github.jsqlparser</groupId> |
188 | 136 | <artifactId>jsqlparser</artifactId> |
189 | 137 | </dependency> |
| 138 | + <!-- jackson for optional json processing --> |
| 139 | + <dependency> |
| 140 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 141 | + <artifactId>jackson-databind</artifactId> |
| 142 | + <scope>provided</scope> |
| 143 | + </dependency> |
| 144 | + <dependency> |
| 145 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 146 | + <artifactId>jackson-annotations</artifactId> |
| 147 | + <scope>provided</scope> |
| 148 | + </dependency> |
| 149 | + <dependency> |
| 150 | + <groupId>com.fasterxml.jackson.dataformat</groupId> |
| 151 | + <artifactId>jackson-dataformat-xml</artifactId> |
| 152 | + <scope>provided</scope> |
| 153 | + </dependency> |
| 154 | + <!-- swagger annotations (optional) --> |
| 155 | + <dependency> |
| 156 | + <groupId>org.springdoc</groupId> |
| 157 | + <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId> |
| 158 | + <scope>provided</scope> |
| 159 | + </dependency> |
| 160 | + <!-- validation annotations (optional) --> |
| 161 | + <dependency> |
| 162 | + <groupId>jakarta.validation</groupId> |
| 163 | + <artifactId>jakarta.validation-api</artifactId> |
| 164 | + <scope>provided</scope> |
| 165 | + </dependency> |
| 166 | + <!-- jakarta annotations --> |
| 167 | + <dependency> |
| 168 | + <groupId>jakarta.annotation</groupId> |
| 169 | + <artifactId>jakarta.annotation-api</artifactId> |
| 170 | + </dependency> |
190 | 171 | </dependencies> |
191 | 172 |
|
192 | 173 | </project> |
0 commit comments