|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | + ~ Licensed to the Apache Software Foundation (ASF) under one or more |
| 4 | + ~ contributor license agreements. See the NOTICE file distributed with |
| 5 | + ~ this work for additional information regarding copyright ownership. |
| 6 | + ~ The ASF licenses this file to You under the Apache License, Version 2.0 |
| 7 | + ~ (the "License"); you may not use this file except in compliance with |
| 8 | + ~ the License. You may obtain a copy of the License at |
| 9 | + ~ |
| 10 | + ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | + ~ |
| 12 | + ~ Unless required by applicable law or agreed to in writing, software |
| 13 | + ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | + ~ See the License for the specific language governing permissions and |
| 16 | + ~ limitations under the License. |
| 17 | + --> |
| 18 | + |
| 19 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 20 | + <parent> |
| 21 | + <groupId>org.apache.shenyu</groupId> |
| 22 | + <artifactId>shenyu-client-java</artifactId> |
| 23 | + <version>2.7.1-SNAPSHOT</version> |
| 24 | + </parent> |
| 25 | + <modelVersion>4.0.0</modelVersion> |
| 26 | + <artifactId>shenyu-java-common</artifactId> |
| 27 | + |
| 28 | + <dependencies> |
| 29 | + <dependency> |
| 30 | + <groupId>com.google.code.gson</groupId> |
| 31 | + <artifactId>gson</artifactId> |
| 32 | + </dependency> |
| 33 | + |
| 34 | + <dependency> |
| 35 | + <groupId>org.apache.commons</groupId> |
| 36 | + <artifactId>commons-lang3</artifactId> |
| 37 | + </dependency> |
| 38 | + |
| 39 | + <dependency> |
| 40 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 41 | + <artifactId>jackson-databind</artifactId> |
| 42 | + </dependency> |
| 43 | + |
| 44 | + <dependency> |
| 45 | + <groupId>com.fasterxml.jackson.datatype</groupId> |
| 46 | + <artifactId>jackson-datatype-jdk8</artifactId> |
| 47 | + </dependency> |
| 48 | + <dependency> |
| 49 | + <groupId>com.fasterxml.jackson.datatype</groupId> |
| 50 | + <artifactId>jackson-datatype-jsr310</artifactId> |
| 51 | + </dependency> |
| 52 | + |
| 53 | + <dependency> |
| 54 | + <groupId>com.fasterxml.jackson.module</groupId> |
| 55 | + <artifactId>jackson-module-parameter-names</artifactId> |
| 56 | + </dependency> |
| 57 | + |
| 58 | + <dependency> |
| 59 | + <groupId>org.apache.commons</groupId> |
| 60 | + <artifactId>commons-collections4</artifactId> |
| 61 | + <version>${commons-collections4.version}</version> |
| 62 | + </dependency> |
| 63 | + |
| 64 | + <dependency> |
| 65 | + <groupId>com.github.ben-manes.caffeine</groupId> |
| 66 | + <artifactId>caffeine</artifactId> |
| 67 | + </dependency> |
| 68 | + <dependency> |
| 69 | + <groupId>commons-codec</groupId> |
| 70 | + <artifactId>commons-codec</artifactId> |
| 71 | + </dependency> |
| 72 | + |
| 73 | + <dependency> |
| 74 | + <groupId>org.ow2.asm</groupId> |
| 75 | + <artifactId>asm-tree</artifactId> |
| 76 | + <version>${asm.version}</version> |
| 77 | + </dependency> |
| 78 | + |
| 79 | + <dependency> |
| 80 | + <groupId>io.projectreactor.netty</groupId> |
| 81 | + <artifactId>reactor-netty-core</artifactId> |
| 82 | + </dependency> |
| 83 | + |
| 84 | + <dependency> |
| 85 | + <groupId>io.projectreactor.netty</groupId> |
| 86 | + <artifactId>reactor-netty-http</artifactId> |
| 87 | + </dependency> |
| 88 | + |
| 89 | + <dependency> |
| 90 | + <groupId>org.bouncycastle</groupId> |
| 91 | + <artifactId>bcprov-jdk18on</artifactId> |
| 92 | + <version>${bcprov-jdk18on.version}</version> |
| 93 | + </dependency> |
| 94 | + <dependency> |
| 95 | + <groupId>org.slf4j</groupId> |
| 96 | + <artifactId>slf4j-api</artifactId> |
| 97 | + </dependency> |
| 98 | + <dependency> |
| 99 | + <groupId>org.slf4j</groupId> |
| 100 | + <artifactId>jcl-over-slf4j</artifactId> |
| 101 | + </dependency> |
| 102 | + <dependency> |
| 103 | + <groupId>com.google.code.findbugs</groupId> |
| 104 | + <artifactId>jsr305</artifactId> |
| 105 | + <version>3.0.2</version> |
| 106 | + </dependency> |
| 107 | + <dependency> |
| 108 | + <groupId>com.google.guava</groupId> |
| 109 | + <artifactId>guava</artifactId> |
| 110 | + <version>32.0.0-jre</version> |
| 111 | + <exclusions> |
| 112 | + <exclusion> |
| 113 | + <groupId>com.google.re2j</groupId> |
| 114 | + <artifactId>re2j</artifactId> |
| 115 | + </exclusion> |
| 116 | + </exclusions> |
| 117 | + </dependency> |
| 118 | + <dependency> |
| 119 | + <groupId>org.hamcrest</groupId> |
| 120 | + <artifactId>hamcrest</artifactId> |
| 121 | + <version>2.2</version> |
| 122 | + <scope>test</scope> |
| 123 | + </dependency> |
| 124 | + <dependency> |
| 125 | + <groupId>org.mockito</groupId> |
| 126 | + <artifactId>mockito-junit-jupiter</artifactId> |
| 127 | + <version>4.11.0</version> |
| 128 | + <scope>test</scope> |
| 129 | + </dependency> |
| 130 | + <dependency> |
| 131 | + <groupId>org.mockito</groupId> |
| 132 | + <artifactId>mockito-inline</artifactId> |
| 133 | + <version>3.3.3</version> |
| 134 | + <scope>test</scope> |
| 135 | + </dependency> |
| 136 | + <dependency> |
| 137 | + <groupId>org.junit.jupiter</groupId> |
| 138 | + <artifactId>junit-jupiter-api</artifactId> |
| 139 | + <version>5.8.2</version> |
| 140 | + <scope>test</scope> |
| 141 | + </dependency> |
| 142 | + <dependency> |
| 143 | + <groupId>org.junit.jupiter</groupId> |
| 144 | + <artifactId>junit-jupiter-params</artifactId> |
| 145 | + <version>5.8.2</version> |
| 146 | + <scope>test</scope> |
| 147 | + </dependency> |
| 148 | + <!-- https://mvnrepository.com/artifact/junit/junit --> |
| 149 | + <dependency> |
| 150 | + <groupId>junit</groupId> |
| 151 | + <artifactId>junit</artifactId> |
| 152 | + <version>4.13.2</version> |
| 153 | + <scope>test</scope> |
| 154 | + </dependency> |
| 155 | + |
| 156 | + </dependencies> |
| 157 | +</project> |
0 commit comments