|
26 | 26 | <gpg.skip>true</gpg.skip>
|
27 | 27 | <maven.javadoc.skip>true</maven.javadoc.skip>
|
28 | 28 | <maven.test.skip>true</maven.test.skip>
|
| 29 | + <commons-csv.version>1.11.0</commons-csv.version> |
| 30 | + <poi.version>5.3.0</poi.version> |
| 31 | + <poi-ooxml.version>5.3.0</poi-ooxml.version> |
| 32 | + <ehcache.version>3.9.11</ehcache.version> |
| 33 | + <commons-io.version>2.16.1</commons-io.version> |
| 34 | + <slf4j-api.version>1.7.36</slf4j-api.version> |
| 35 | + <lombok.version>1.18.32</lombok.version> |
| 36 | + <spring-core.version>5.3.37</spring-core.version> |
| 37 | + <fastjson2.version>2.0.51</fastjson2.version> |
| 38 | + <spring-boot-starter-web.version>2.7.18</spring-boot-starter-web.version> |
| 39 | + <spring-boot-starter-test.version>2.7.18</spring-boot-starter-test.version> |
| 40 | + <slf4j-simple.version>1.7.36</slf4j-simple.version> |
| 41 | + <jcl-over-slf4j.version>1.7.36</jcl-over-slf4j.version> |
| 42 | + <log4j-over-slf4j.version>1.7.36</log4j-over-slf4j.version> |
| 43 | + <logback-classic.version>1.5.6</logback-classic.version> |
29 | 44 | </properties>
|
30 | 45 |
|
31 | 46 | <scm>
|
|
75 | 90 |
|
76 | 91 | <dependencyManagement>
|
77 | 92 | <dependencies>
|
| 93 | + <dependency> |
| 94 | + <groupId>org.apache.commons</groupId> |
| 95 | + <artifactId>commons-csv</artifactId> |
| 96 | + <version>${commons-csv.version}</version> |
| 97 | + </dependency> |
| 98 | + <dependency> |
| 99 | + <groupId>org.apache.poi</groupId> |
| 100 | + <artifactId>poi</artifactId> |
| 101 | + <version>${poi.version}</version> |
| 102 | + <exclusions> |
| 103 | + <exclusion> |
| 104 | + <groupId>commons-io</groupId> |
| 105 | + <artifactId>commons-io</artifactId> |
| 106 | + </exclusion> |
| 107 | + <exclusion> |
| 108 | + <groupId>commons-codec</groupId> |
| 109 | + <artifactId>commons-codec</artifactId> |
| 110 | + </exclusion> |
| 111 | + </exclusions> |
| 112 | + </dependency> |
| 113 | + <dependency> |
| 114 | + <groupId>org.apache.poi</groupId> |
| 115 | + <artifactId>poi-ooxml</artifactId> |
| 116 | + <version>${poi-ooxml.version}</version> |
| 117 | + <exclusions> |
| 118 | + <exclusion> |
| 119 | + <groupId>commons-io</groupId> |
| 120 | + <artifactId>commons-io</artifactId> |
| 121 | + </exclusion> |
| 122 | + </exclusions> |
| 123 | + </dependency> |
| 124 | + <dependency> |
| 125 | + <groupId>org.ehcache</groupId> |
| 126 | + <artifactId>ehcache</artifactId> |
| 127 | + <version>${ehcache.version}</version> |
| 128 | + </dependency> |
| 129 | + <dependency> |
| 130 | + <groupId>commons-io</groupId> |
| 131 | + <artifactId>commons-io</artifactId> |
| 132 | + <version>${commons-io.version}</version> |
| 133 | + </dependency> |
| 134 | + <dependency> |
| 135 | + <groupId>org.slf4j</groupId> |
| 136 | + <artifactId>slf4j-api</artifactId> |
| 137 | + <version>${slf4j-api.version}</version> |
| 138 | + </dependency> |
| 139 | + <!-- provided --> |
| 140 | + <dependency> |
| 141 | + <groupId>org.projectlombok</groupId> |
| 142 | + <artifactId>lombok</artifactId> |
| 143 | + <version>${lombok.version}</version> |
| 144 | + <scope>provided</scope> |
| 145 | + </dependency> |
| 146 | + <dependency> |
| 147 | + <groupId>org.springframework</groupId> |
| 148 | + <artifactId>spring-core</artifactId> |
| 149 | + <version>${spring-core.version}</version> |
| 150 | + </dependency> |
| 151 | + <dependency> |
| 152 | + <groupId>com.alibaba.fastjson2</groupId> |
| 153 | + <artifactId>fastjson2</artifactId> |
| 154 | + <version>${fastjson2.version}</version> |
| 155 | + </dependency> |
| 156 | + <dependency> |
| 157 | + <groupId>org.slf4j</groupId> |
| 158 | + <artifactId>slf4j-simple</artifactId> |
| 159 | + <version>${slf4j-simple.version}</version> |
| 160 | + </dependency> |
| 161 | + <dependency> |
| 162 | + <groupId>org.slf4j</groupId> |
| 163 | + <artifactId>jcl-over-slf4j</artifactId> |
| 164 | + <version>${jcl-over-slf4j.version}</version> |
| 165 | + </dependency> |
| 166 | + <dependency> |
| 167 | + <groupId>org.slf4j</groupId> |
| 168 | + <artifactId>log4j-over-slf4j</artifactId> |
| 169 | + <version>${log4j-over-slf4j.version}</version> |
| 170 | + </dependency> |
| 171 | + <dependency> |
| 172 | + <groupId>ch.qos.logback</groupId> |
| 173 | + <artifactId>logback-classic</artifactId> |
| 174 | + <version>${logback-classic.version}</version> |
| 175 | + </dependency> |
| 176 | + <dependency> |
| 177 | + <groupId>org.springframework.boot</groupId> |
| 178 | + <artifactId>spring-boot-starter-web</artifactId> |
| 179 | + <version>${spring-boot-starter-web.version}</version> |
| 180 | + </dependency> |
| 181 | + <dependency> |
| 182 | + <groupId>org.springframework.boot</groupId> |
| 183 | + <artifactId>spring-boot-starter-test</artifactId> |
| 184 | + <version>${spring-boot-starter-test.version}</version> |
| 185 | + </dependency> |
78 | 186 | </dependencies>
|
79 | 187 | </dependencyManagement>
|
80 | 188 |
|
|
0 commit comments