mirror of
https://gitee.com/yadong.zhang/JustAuth.git
synced 2025-12-06 16:58:24 +08:00
🎉 初始化提交
This commit is contained in:
parent
da34f6bde6
commit
21156c70aa
221
pom.xml
221
pom.xml
@ -1,110 +1,111 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
<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">
|
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>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<groupId>me.zhyd.oauth</groupId>
|
<groupId>me.zhyd.oauth</groupId>
|
||||||
<artifactId>JustAuth</artifactId>
|
<artifactId>JustAuth</artifactId>
|
||||||
<version>1.0.0-SNAPSHOT</version>
|
<version>1.0.0-SNAPSHOT</version>
|
||||||
|
|
||||||
<name>JustAuth</name>
|
<name>JustAuth</name>
|
||||||
<url>https://gitee.com/yadong.zhang/JustAuth</url>
|
<url>https://gitee.com/yadong.zhang/JustAuth</url>
|
||||||
<description>史上最全的整合第三方登录的工具, Just Auth</description>
|
<description>史上最全的整合第三方登录的工具, Just Auth</description>
|
||||||
|
|
||||||
<licenses>
|
<licenses>
|
||||||
<license>
|
<license>
|
||||||
<name>The Apache Software License, Version 2.0</name>
|
<name>The Apache Software License, Version 2.0</name>
|
||||||
<url>https://gitee.com/yadong.zhang/JustAuth/blob/master/LICENSE</url>
|
<url>https://gitee.com/yadong.zhang/JustAuth/blob/master/LICENSE</url>
|
||||||
</license>
|
</license>
|
||||||
</licenses>
|
</licenses>
|
||||||
|
|
||||||
<developers>
|
<developers>
|
||||||
<developer>
|
<developer>
|
||||||
<name>yadong.zhang</name>
|
<name>yadong.zhang</name>
|
||||||
<email>yadong.zhang0415@gmail.com</email>
|
<email>yadong.zhang0415@gmail.com</email>
|
||||||
</developer>
|
</developer>
|
||||||
</developers>
|
</developers>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
<maven.compiler.source>1.7</maven.compiler.source>
|
<java.version>1.8</java.version>
|
||||||
<maven.compiler.target>1.7</maven.compiler.target>
|
<maven.compiler.source>1.8</maven.compiler.source>
|
||||||
<maven-source.version>2.2.1</maven-source.version>
|
<maven.compiler.target>1.8</maven.compiler.target>
|
||||||
<maven-compiler.version>3.7.0</maven-compiler.version>
|
<maven-source.version>2.2.1</maven-source.version>
|
||||||
<maven.test.skip>true</maven.test.skip>
|
<maven-compiler.version>3.7.0</maven-compiler.version>
|
||||||
<hutool-version>4.1.21</hutool-version>
|
<maven.test.skip>true</maven.test.skip>
|
||||||
<lombok-version>1.18.4</lombok-version>
|
<hutool-version>4.1.21</hutool-version>
|
||||||
<junit-version>4.11</junit-version>
|
<lombok-version>1.18.4</lombok-version>
|
||||||
<servlet-api-version>2.5</servlet-api-version>
|
<junit-version>4.11</junit-version>
|
||||||
<fastjson-version>1.2.44</fastjson-version>
|
<servlet-api-version>2.5</servlet-api-version>
|
||||||
</properties>
|
<fastjson-version>1.2.44</fastjson-version>
|
||||||
|
</properties>
|
||||||
<dependencies>
|
|
||||||
<dependency>
|
<dependencies>
|
||||||
<groupId>org.projectlombok</groupId>
|
<dependency>
|
||||||
<artifactId>lombok</artifactId>
|
<groupId>org.projectlombok</groupId>
|
||||||
<version>${lombok-version}</version>
|
<artifactId>lombok</artifactId>
|
||||||
</dependency>
|
<version>${lombok-version}</version>
|
||||||
<dependency>
|
</dependency>
|
||||||
<groupId>cn.hutool</groupId>
|
<dependency>
|
||||||
<artifactId>hutool-http</artifactId>
|
<groupId>cn.hutool</groupId>
|
||||||
<version>${hutool-version}</version>
|
<artifactId>hutool-http</artifactId>
|
||||||
</dependency>
|
<version>${hutool-version}</version>
|
||||||
<dependency>
|
</dependency>
|
||||||
<groupId>junit</groupId>
|
<dependency>
|
||||||
<artifactId>junit</artifactId>
|
<groupId>junit</groupId>
|
||||||
<version>${junit-version}</version>
|
<artifactId>junit</artifactId>
|
||||||
<scope>test</scope>
|
<version>${junit-version}</version>
|
||||||
</dependency>
|
<scope>test</scope>
|
||||||
<dependency>
|
</dependency>
|
||||||
<groupId>javax.servlet</groupId>
|
<dependency>
|
||||||
<artifactId>servlet-api</artifactId>
|
<groupId>javax.servlet</groupId>
|
||||||
<version>${servlet-api-version}</version>
|
<artifactId>servlet-api</artifactId>
|
||||||
</dependency>
|
<version>${servlet-api-version}</version>
|
||||||
<dependency>
|
</dependency>
|
||||||
<groupId>com.alibaba</groupId>
|
<dependency>
|
||||||
<artifactId>fastjson</artifactId>
|
<groupId>com.alibaba</groupId>
|
||||||
<version>${fastjson-version}</version>
|
<artifactId>fastjson</artifactId>
|
||||||
</dependency>
|
<version>${fastjson-version}</version>
|
||||||
</dependencies>
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
<build>
|
|
||||||
<finalName>${project.artifactId}-${project.version}</finalName>
|
<build>
|
||||||
<plugins>
|
<finalName>${project.artifactId}-${project.version}</finalName>
|
||||||
<plugin>
|
<plugins>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<plugin>
|
||||||
<artifactId>maven-compiler-plugin</artifactId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<version>${maven-compiler.version}</version>
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
<configuration>
|
<version>${maven-compiler.version}</version>
|
||||||
<encoding>${project.build.sourceEncoding}</encoding>
|
<configuration>
|
||||||
<source>${java.version}</source>
|
<encoding>${project.build.sourceEncoding}</encoding>
|
||||||
<target>${java.version}</target>
|
<source>${java.version}</source>
|
||||||
</configuration>
|
<target>${java.version}</target>
|
||||||
</plugin>
|
</configuration>
|
||||||
<plugin>
|
</plugin>
|
||||||
<artifactId>maven-source-plugin</artifactId>
|
<plugin>
|
||||||
<version>${maven-source.version}</version>
|
<artifactId>maven-source-plugin</artifactId>
|
||||||
<inherited>true</inherited>
|
<version>${maven-source.version}</version>
|
||||||
<executions>
|
<inherited>true</inherited>
|
||||||
<execution>
|
<executions>
|
||||||
<phase>package</phase>
|
<execution>
|
||||||
<goals>
|
<phase>package</phase>
|
||||||
<goal>jar-no-fork</goal>
|
<goals>
|
||||||
</goals>
|
<goal>jar-no-fork</goal>
|
||||||
</execution>
|
</goals>
|
||||||
</executions>
|
</execution>
|
||||||
</plugin>
|
</executions>
|
||||||
<!-- Javadoc -->
|
</plugin>
|
||||||
<plugin>
|
<!-- Javadoc -->
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<plugin>
|
||||||
<artifactId>maven-javadoc-plugin</artifactId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
</plugin>
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
<!-- GPG -->
|
</plugin>
|
||||||
<plugin>
|
<!-- GPG -->
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<plugin>
|
||||||
<artifactId>maven-gpg-plugin</artifactId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
</plugin>
|
<artifactId>maven-gpg-plugin</artifactId>
|
||||||
</plugins>
|
</plugin>
|
||||||
</build>
|
</plugins>
|
||||||
</project>
|
</build>
|
||||||
|
</project>
|
||||||
|
|||||||
@ -15,7 +15,6 @@ import java.net.UnknownHostException;
|
|||||||
* @date 2019/1/31 16:31
|
* @date 2019/1/31 16:31
|
||||||
* @since 1.0
|
* @since 1.0
|
||||||
*/
|
*/
|
||||||
@Slf4j
|
|
||||||
public class IpUtils {
|
public class IpUtils {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user