pom.xml 8.8 KB
Newer Older
智布道's avatar
智布道 已提交
1 2
<?xml version="1.0" encoding="UTF-8"?>

3
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
智布道's avatar
智布道 已提交
4
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5
  <modelVersion>4.0.0</modelVersion>
智布道's avatar
智布道 已提交
6

7 8
  <groupId>me.zhyd.oauth</groupId>
  <artifactId>JustAuth</artifactId>
9
  <version>1.14.0</version>
智布道's avatar
智布道 已提交
10

11 12 13
  <name>JustAuth</name>
  <url>https://gitee.com/yadong.zhang/JustAuth</url>
  <description>
智布道's avatar
智布道 已提交
14
    史上最全的整合第三方登录的开源库。目前已支持Github、Gitee、微博、钉钉、百度、Coding、腾讯云开发者平台、OSChina、支付宝、
智布道's avatar
智布道 已提交
15
    QQ、微信开放平台、微信公众平台、淘宝、Google、Facebook、抖音、领英、小米、微软、今日头条、Teambition、StackOverflow、Pinterest、人人、华为、
智布道's avatar
智布道 已提交
16
    企业微信、酷家乐、Gitlab、美团、饿了么和推特等第三方平台的授权登录。
17 18
    Login, so easy!
  </description>
智布道's avatar
智布道 已提交
19

20 21 22 23 24 25
  <licenses>
    <license>
      <name>MIT</name>
      <url>https://gitee.com/yadong.zhang/JustAuth/blob/master/LICENSE</url>
    </license>
  </licenses>
智布道's avatar
智布道 已提交
26

27 28 29 30 31
  <scm>
    <connection>scm:git:https://gitee.com/yadong.zhang/JustAuth.git</connection>
    <developerConnection>scm:git:https://gitee.com/yadong.zhang/JustAuth.git</developerConnection>
    <url>https://gitee.com/yadong.zhang/JustAuth</url>
  </scm>
32

33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
  <developers>
    <developer>
      <name>Yadong.Zhang</name>
      <email>yadong.zhang0415@gmail.com</email>
      <url>https://www.zhyd.me</url>
    </developer>
    <developer>
      <name>Yangkai.Shen</name>
      <email>shenyangkai1994@gmail.com</email>
      <url>https://xkcoding.com</url>
    </developer>
    <developer>
      <name>Hongwei.Peng</name>
      <email>pengisgood@gmail.com</email>
      <url>https://github.com/pengisgood</url>
    </developer>
  </developers>
智布道's avatar
智布道 已提交
50

51 52 53 54 55 56
  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <java.version>1.8</java.version>
    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>
    <maven-source.version>2.2.1</maven-source.version>
57 58 59 60 61 62
    <maven-compiler.version>3.8.1</maven-compiler.version>
    <maven-javadoc.version>3.1.0</maven-javadoc.version>
    <cobertura-version>2.7</cobertura-version>
    <maven-surefire-version>2.20</maven-surefire-version>
    <maven-gpg-version>1.6</maven-gpg-version>
    <maven.test.skip>false</maven.test.skip>
63
    <simple-http.version>1.0</simple-http.version>
刘勋 已提交
64
    <lombok-version>1.18.10</lombok-version>
65
    <junit-version>4.11</junit-version>
刘勋 已提交
66
    <fastjson-version>1.2.62</fastjson-version>
刘勋 已提交
67
    <alipay-sdk-version>4.8.10.ALL</alipay-sdk-version>
智布道's avatar
智布道 已提交
68
    <jacoco-version>0.8.2</jacoco-version>
69
  </properties>
智布道's avatar
智布道 已提交
70

71 72 73 74 75 76 77 78
  <dependencies>
    <dependency>
      <groupId>org.projectlombok</groupId>
      <artifactId>lombok</artifactId>
      <version>${lombok-version}</version>
      <optional>true</optional>
    </dependency>
    <dependency>
79 80 81
      <groupId>com.xkcoding.http</groupId>
      <artifactId>simple-http</artifactId>
      <version>${simple-http.version}</version>
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>${junit-version}</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>com.alibaba</groupId>
      <artifactId>fastjson</artifactId>
      <version>${fastjson-version}</version>
    </dependency>
    <dependency>
      <groupId>com.alipay.sdk</groupId>
      <artifactId>alipay-sdk-java</artifactId>
      <version>${alipay-sdk-version}</version>
98
      <scope>provided</scope>
99 100
    </dependency>
  </dependencies>
智布道's avatar
智布道 已提交
101

102 103 104 105 106 107 108 109 110 111 112 113 114 115
  <build>
    <finalName>${project.artifactId}-${project.version}</finalName>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>${maven-compiler.version}</version>
        <configuration>
          <encoding>${project.build.sourceEncoding}</encoding>
          <source>${java.version}</source>
          <target>${java.version}</target>
        </configuration>
      </plugin>
      <plugin>
116
        <groupId>org.apache.maven.plugins</groupId>
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
        <artifactId>maven-source-plugin</artifactId>
        <version>${maven-source.version}</version>
        <inherited>true</inherited>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>jar-no-fork</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
132 133 134 135 136 137 138 139 140
        <version>${maven-javadoc.version}</version>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
141 142 143
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
144 145 146 147 148 149 150 151 152 153 154 155
        <artifactId>maven-surefire-plugin</artifactId>
        <version>${maven-surefire-version}</version>
        <configuration>
          <!-- 包含其他测试类 -->
          <includes>
            <include>**/*Test.java</include>
          </includes>
          <!-- 排除掉AuthRequestTest测试类,该类只做api演示用 -->
          <excludes>
            <exclude>**/AuthRequestTest.java</exclude>
          </excludes>
        </configuration>
156 157 158 159 160 161 162
      </plugin>
    </plugins>
  </build>
  <profiles>
    <profile>
      <id>release</id>
      <build>
智布道's avatar
智布道 已提交
163
        <plugins>
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-source-plugin</artifactId>
            <version>${maven-source.version}</version>
            <inherited>true</inherited>
            <executions>
              <execution>
                <phase>package</phase>
                <goals>
                  <goal>jar-no-fork</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
          <plugin>
179 180 181 182 183 184 185 186 187 188
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>cobertura-maven-plugin</artifactId>
            <version>${cobertura-version}</version>
            <configuration>
              <formats>
                <format>html</format>
                <format>xml</format>
              </formats>
              <check/>
            </configuration>
189
          </plugin>
智布道's avatar
智布道 已提交
190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
          <plugin>
            <groupId>org.jacoco</groupId>
            <artifactId>jacoco-maven-plugin</artifactId>
            <version>${jacoco-version}</version>
            <executions>
              <execution>
                <goals>
                  <goal>prepare-agent</goal>
                </goals>
              </execution>
              <execution>
                <id>report</id>
                <phase>test</phase>
                <goals>
                  <goal>report</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
209 210 211
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-gpg-plugin</artifactId>
212
            <version>${maven-gpg-version}</version>
213 214 215 216 217 218 219 220 221
            <executions>
              <execution>
                <phase>verify</phase>
                <goals>
                  <goal>sign</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
智布道's avatar
智布道 已提交
222
        </plugins>
223 224 225 226 227 228 229 230 231 232 233 234
      </build>
      <distributionManagement>
        <snapshotRepository>
          <id>sonatype-nexus-snapshots</id>
          <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
        </snapshotRepository>
        <repository>
          <id>sonatype-nexus-staging</id>
          <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
        </repository>
      </distributionManagement>
    </profile>
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
    <!--私服-->
    <profile>
      <id>nexus</id>
      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-gpg-plugin</artifactId>
            <version>${maven-gpg-version}</version>
            <executions>
              <execution>
                <phase>verify</phase>
                <goals>
                  <goal>sign</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
      <distributionManagement>
        <repository>
257
          <id>xkcoding-nexus</id>
258 259 260
          <url>https://nexus.xkcoding.com/repository/maven-releases/</url>
        </repository>
        <snapshotRepository>
261
          <id>xkcoding-nexus</id>
262 263 264 265
          <url>https://nexus.xkcoding.com/repository/maven-snapshots/</url>
        </snapshotRepository>
      </distributionManagement>
    </profile>
266
  </profiles>
267
</project>