|
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + |
| 5 | + <groupId>com.alipay.tool</groupId> |
| 6 | + <artifactId>java-extractor</artifactId> |
| 7 | + <version>0.2.0</version> |
| 8 | + |
| 9 | + <packaging>jar</packaging> |
| 10 | + |
| 11 | + <name>coref-java-src-extractor</name> |
| 12 | + <url>http://maven.apache.org</url> |
| 13 | + |
| 14 | + <properties> |
| 15 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 16 | + <kotlin.version.coref>1.5.21</kotlin.version.coref> |
| 17 | + </properties> |
| 18 | + <dependencies> |
| 19 | + <dependency> |
| 20 | + <groupId>org.mybatis</groupId> |
| 21 | + <artifactId>mybatis</artifactId> |
| 22 | + <version>3.5.7</version> |
| 23 | + </dependency> |
| 24 | + <dependency> |
| 25 | + <groupId>javax.annotation</groupId> |
| 26 | + <artifactId>javax.annotation-api</artifactId> |
| 27 | + <version>1.3.2</version> |
| 28 | + </dependency> |
| 29 | + <dependency> |
| 30 | + <groupId>org.mybatis.dynamic-sql</groupId> |
| 31 | + <artifactId>mybatis-dynamic-sql</artifactId> |
| 32 | + <version>1.3.0</version> |
| 33 | + </dependency> |
| 34 | + <dependency> |
| 35 | + <groupId>commons-codec</groupId> |
| 36 | + <artifactId>commons-codec</artifactId> |
| 37 | + <version>1.15</version> |
| 38 | + </dependency> |
| 39 | + <dependency> |
| 40 | + <groupId>com.ibm.icu</groupId> |
| 41 | + <artifactId>icu4j</artifactId> |
| 42 | + <version>59.1</version> |
| 43 | + </dependency> |
| 44 | + |
| 45 | + <dependency> |
| 46 | + <groupId>org.apache.commons</groupId> |
| 47 | + <artifactId>commons-lang3</artifactId> |
| 48 | + <version>3.12.0</version> |
| 49 | + </dependency> |
| 50 | + |
| 51 | + <dependency> |
| 52 | + <groupId>org.projectlombok</groupId> |
| 53 | + <artifactId>lombok</artifactId> |
| 54 | + <version>1.18.20</version> |
| 55 | + <scope>provided</scope> |
| 56 | + </dependency> |
| 57 | + <dependency> |
| 58 | + <groupId>me.tongfei</groupId> |
| 59 | + <artifactId>progressbar</artifactId> |
| 60 | + <version>0.9.2</version> |
| 61 | + </dependency> |
| 62 | + |
| 63 | + <dependency> |
| 64 | + <groupId>org.jetbrains</groupId> |
| 65 | + <artifactId>annotations</artifactId> |
| 66 | + <version>22.0.0</version> |
| 67 | + </dependency> |
| 68 | + <dependency> |
| 69 | + <groupId>uk.com.robust-it</groupId> |
| 70 | + <artifactId>cloning</artifactId> |
| 71 | + <version>1.9.12</version> |
| 72 | + </dependency> |
| 73 | + |
| 74 | + <dependency> |
| 75 | + <groupId>com.google.code.gson</groupId> |
| 76 | + <artifactId>gson</artifactId> |
| 77 | + <version>2.8.8</version> |
| 78 | + </dependency> |
| 79 | + <dependency> |
| 80 | + <groupId>com.google.guava</groupId> |
| 81 | + <artifactId>guava</artifactId> |
| 82 | + <version>30.1.1-jre</version> |
| 83 | + </dependency> |
| 84 | + <dependency> |
| 85 | + <groupId>org.hamcrest</groupId> |
| 86 | + <artifactId>hamcrest-all</artifactId> |
| 87 | + <version>1.3</version> |
| 88 | + </dependency> |
| 89 | + <dependency> |
| 90 | + <groupId>com.google.re2j</groupId> |
| 91 | + <artifactId>re2j</artifactId> |
| 92 | + <version>1.6</version> |
| 93 | + </dependency> |
| 94 | + <dependency> |
| 95 | + <groupId>org.jetbrains.kotlin</groupId> |
| 96 | + <artifactId>kotlin-compiler-embeddable</artifactId> |
| 97 | + <version>${kotlin.version.coref}</version> |
| 98 | + </dependency> |
| 99 | + <dependency> |
| 100 | + <groupId>org.jetbrains.kotlin</groupId> |
| 101 | + <artifactId>kotlin-reflect</artifactId> |
| 102 | + <version>${kotlin.version.coref}</version> |
| 103 | + </dependency> |
| 104 | + <dependency> |
| 105 | + <groupId>org.jetbrains.kotlin</groupId> |
| 106 | + <artifactId>kotlin-script-runtime</artifactId> |
| 107 | + <version>${kotlin.version.coref}</version> |
| 108 | + </dependency> |
| 109 | + <dependency> |
| 110 | + <groupId>org.jetbrains.kotlin</groupId> |
| 111 | + <artifactId>kotlin-stdlib</artifactId> |
| 112 | + <version>${kotlin.version.coref}</version> |
| 113 | + </dependency> |
| 114 | + |
| 115 | + <dependency> |
| 116 | + <groupId>net.java.dev.jna</groupId> |
| 117 | + <artifactId>jna</artifactId> |
| 118 | + <version>4.1.0</version> |
| 119 | + </dependency> |
| 120 | + |
| 121 | + <dependency> |
| 122 | + <groupId>org.xerial</groupId> |
| 123 | + <artifactId>sqlite-jdbc</artifactId> |
| 124 | + <version>3.36.0.2</version> |
| 125 | + </dependency> |
| 126 | + |
| 127 | + <dependency> |
| 128 | + <groupId>tk.mybatis</groupId> |
| 129 | + <artifactId>mapper</artifactId> |
| 130 | + <version>4.1.5</version> |
| 131 | + </dependency> |
| 132 | + <dependency> |
| 133 | + <groupId>org.junit.jupiter</groupId> |
| 134 | + <artifactId>junit-jupiter</artifactId> |
| 135 | + <version>5.9.1</version> |
| 136 | + <scope>test</scope> |
| 137 | + </dependency> |
| 138 | + <dependency> |
| 139 | + <groupId>info.picocli</groupId> |
| 140 | + <artifactId>picocli</artifactId> |
| 141 | + <version>4.6.1</version> |
| 142 | + </dependency> |
| 143 | + <dependency> |
| 144 | + <groupId>org.apache.logging.log4j</groupId> |
| 145 | + <artifactId>log4j-core</artifactId> |
| 146 | + <version>2.14.1</version> |
| 147 | + </dependency> |
| 148 | + <dependency> |
| 149 | + <groupId>org.apache.logging.log4j</groupId> |
| 150 | + <artifactId>log4j-api</artifactId> |
| 151 | + <version>2.14.1</version> |
| 152 | + </dependency> |
| 153 | + <dependency> |
| 154 | + <groupId>org.apache.logging.log4j</groupId> |
| 155 | + <artifactId>log4j-slf4j-impl</artifactId> |
| 156 | + <version>2.14.1</version> |
| 157 | + </dependency> |
| 158 | + |
| 159 | + <dependency> |
| 160 | + <groupId>commons-io</groupId> |
| 161 | + <artifactId>commons-io</artifactId> |
| 162 | + <version>2.8.0</version> |
| 163 | + </dependency> |
| 164 | + <dependency> |
| 165 | + <groupId>commons-collections</groupId> |
| 166 | + <artifactId>commons-collections</artifactId> |
| 167 | + <version>3.2.2</version> |
| 168 | + </dependency> |
| 169 | + <dependency> |
| 170 | + <groupId>com.aliyun.oss</groupId> |
| 171 | + <artifactId>aliyun-sdk-oss</artifactId> |
| 172 | + <version>3.10.2</version> |
| 173 | + </dependency> |
| 174 | + <dependency> |
| 175 | + <groupId>org.apache.commons</groupId> |
| 176 | + <artifactId>commons-compress</artifactId> |
| 177 | + <version>1.18</version> |
| 178 | + </dependency> |
| 179 | + <dependency> |
| 180 | + <groupId>com.alibaba</groupId> |
| 181 | + <artifactId>fastjson</artifactId> |
| 182 | + <version>1.2.72_noneautotype</version> |
| 183 | + </dependency> |
| 184 | + <dependency> |
| 185 | + <groupId>org.ini4j</groupId> |
| 186 | + <artifactId>ini4j</artifactId> |
| 187 | + <version>0.5.4</version> |
| 188 | + </dependency> |
| 189 | + </dependencies> |
| 190 | + |
| 191 | + <build> |
| 192 | + <plugins> |
| 193 | + <plugin> |
| 194 | + <groupId>org.apache.maven.plugins</groupId> |
| 195 | + <artifactId>maven-compiler-plugin</artifactId> |
| 196 | + <version>3.8.1</version> |
| 197 | + <configuration> |
| 198 | + <source>8</source> |
| 199 | + <target>8</target> |
| 200 | + </configuration> |
| 201 | + </plugin> |
| 202 | + <plugin> |
| 203 | + <groupId>org.mybatis.generator</groupId> |
| 204 | + <artifactId>mybatis-generator-maven-plugin</artifactId> |
| 205 | + <version>1.4.0</version> |
| 206 | + <configuration> |
| 207 | + <verbose>false</verbose> |
| 208 | + <overwrite>true</overwrite> |
| 209 | + </configuration> |
| 210 | + <dependencies> |
| 211 | + <dependency> |
| 212 | + <groupId>org.xerial</groupId> |
| 213 | + <artifactId>sqlite-jdbc</artifactId> |
| 214 | + <version>3.36.0.1</version> |
| 215 | + </dependency> |
| 216 | + <dependency> |
| 217 | + <groupId>tk.mybatis</groupId> |
| 218 | + <artifactId>mapper</artifactId> |
| 219 | + <version>4.1.5</version> |
| 220 | + </dependency> |
| 221 | + </dependencies> |
| 222 | + <executions> |
| 223 | + <execution> |
| 224 | + <id>Generate MyBatis Artifacts</id> |
| 225 | + <goals> |
| 226 | + <goal>generate</goal> |
| 227 | + </goals> |
| 228 | + </execution> |
| 229 | + </executions> |
| 230 | + </plugin> |
| 231 | + <plugin> |
| 232 | + <groupId>org.apache.maven.plugins</groupId> |
| 233 | + <artifactId>maven-assembly-plugin</artifactId> |
| 234 | + <version>3.3.0</version> |
| 235 | + <configuration> |
| 236 | + <archive> |
| 237 | + <manifest> |
| 238 | + <mainClass>com.alipay.codequery.Extractor</mainClass> |
| 239 | + </manifest> |
| 240 | + </archive> |
| 241 | + <descriptorRefs> |
| 242 | + <descriptorRef>jar-with-dependencies</descriptorRef> |
| 243 | + </descriptorRefs> |
| 244 | + </configuration> |
| 245 | + <executions> |
| 246 | + <execution> |
| 247 | + <id>make-assembly</id> |
| 248 | + <phase>package</phase> |
| 249 | + <goals> |
| 250 | + <goal>single</goal> |
| 251 | + </goals> |
| 252 | + </execution> |
| 253 | + </executions> |
| 254 | + </plugin> |
| 255 | + </plugins> |
| 256 | + </build> |
| 257 | +</project> |
| 258 | + |
0 commit comments