pom.xml 7.3 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 5 6 7 8
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>me.zhyd.oauth</groupId>
    <artifactId>JustAuth</artifactId>
9
    <version>1.4.0</version>
智布道's avatar
智布道 已提交
10 11 12 13 14 15 16

    <name>JustAuth</name>
    <url>https://gitee.com/yadong.zhang/JustAuth</url>
    <description>史上最全的整合第三方登录的工具, Just Auth</description>

    <licenses>
        <license>
智布道's avatar
智布道 已提交
17
            <name>MIT</name>
智布道's avatar
智布道 已提交
18 19 20 21
            <url>https://gitee.com/yadong.zhang/JustAuth/blob/master/LICENSE</url>
        </license>
    </licenses>

22 23 24 25 26 27
    <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>

智布道's avatar
智布道 已提交
28 29 30 31
    <developers>
        <developer>
            <name>yadong.zhang</name>
            <email>yadong.zhang0415@gmail.com</email>
智布道's avatar
智布道 已提交
32
            <url>https://www.zhyd.me</url>
智布道's avatar
智布道 已提交
33
        </developer>
34 35 36 37 38
        <developer>
            <name>Yangkai.Shen</name>
            <email>shenyangkai1994@gmail.com</email>
            <url>https://xkcoding.com</url>
        </developer>
智布道's avatar
智布道 已提交
39 40 41 42 43 44 45 46 47 48 49 50 51 52
    </developers>

    <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>
        <maven-compiler.version>3.7.0</maven-compiler.version>
        <maven.test.skip>true</maven.test.skip>
        <hutool-version>4.1.21</hutool-version>
        <lombok-version>1.18.4</lombok-version>
        <junit-version>4.11</junit-version>
        <fastjson-version>1.2.44</fastjson-version>
53
        <google-api-version>1.28.0</google-api-version>
54
        <guava-version>27.1-jre</guava-version>
55
        <alipay-sdk-version>3.7.4.ALL</alipay-sdk-version>
智布道's avatar
智布道 已提交
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <version>${lombok-version}</version>
        </dependency>
        <dependency>
            <groupId>cn.hutool</groupId>
            <artifactId>hutool-http</artifactId>
            <version>${hutool-version}</version>
        </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>
80
        <!--<dependency>
81 82 83
            <groupId>com.google.api-client</groupId>
            <artifactId>google-api-client</artifactId>
            <version>${google-api-version}</version>
84
        </dependency>-->
85 86 87 88 89 90 91

        <dependency>
            <groupId>com.alipay.sdk</groupId>
            <artifactId>alipay-sdk-java</artifactId>
            <version>${alipay-sdk-version}</version>
            <scope>compile</scope>
        </dependency>
智布道's avatar
智布道 已提交
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
    </dependencies>

    <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>
                <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>
            <!-- Javadoc -->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
            </plugin>
            <!-- GPG -->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-gpg-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
    <profiles>
        <profile>
            <id>release</id>
            <build>
                <plugins>
                    <!-- Source -->
                    <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>
                    <!-- Javadoc -->
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-javadoc-plugin</artifactId>
                        <executions>
                            <execution>
                                <phase>package</phase>
                                <goals>
                                    <goal>jar</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>
                    <!-- GPG -->
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-gpg-plugin</artifactId>
                        <executions>
                            <execution>
                                <phase>verify</phase>
                                <goals>
                                    <goal>sign</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </build>
            <distributionManagement>
                <snapshotRepository>
智布道's avatar
智布道 已提交
182
                    <id>sonatype-nexus-snapshots</id>
183 184 185
                    <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
                </snapshotRepository>
                <repository>
智布道's avatar
智布道 已提交
186
                    <id>sonatype-nexus-staging</id>
187 188 189 190 191
                    <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
                </repository>
            </distributionManagement>
        </profile>
    </profiles>
智布道's avatar
智布道 已提交
192
</project>