未验证 提交 504bf1cc 编写于 作者: 智布道's avatar 智布道 👁 提交者: GitHub

Merge pull request #28 from xkcoding/fix-lombok

🐛 修复 lombok 引入问题
...@@ -2,192 +2,193 @@ ...@@ -2,192 +2,193 @@
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
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.9.2</version> <version>1.9.2</version>
<name>JustAuth</name> <name>JustAuth</name>
<url>https://gitee.com/yadong.zhang/JustAuth</url> <url>https://gitee.com/yadong.zhang/JustAuth</url>
<description> <description>
史上最全的整合第三方登录的工具,目前已支持Github、Gitee、微博、钉钉、百度、Coding、腾讯云开发者平台、OSChina、支付宝、QQ、微信、淘宝、Google、Facebook、抖音、领英、小米、微软和今日头条等第三方平台的授权登录。 史上最全的整合第三方登录的工具,目前已支持Github、Gitee、微博、钉钉、百度、Coding、腾讯云开发者平台、OSChina、支付宝、QQ、微信、淘宝、Google、Facebook、抖音、领英、小米、微软和今日头条等第三方平台的授权登录。
Login, so easy! Login, so easy!
</description> </description>
<licenses> <licenses>
<license> <license>
<name>MIT</name> <name>MIT</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>
<scm> <scm>
<connection>scm:git:https://gitee.com/yadong.zhang/JustAuth.git</connection> <connection>scm:git:https://gitee.com/yadong.zhang/JustAuth.git</connection>
<developerConnection>scm:git:https://gitee.com/yadong.zhang/JustAuth.git</developerConnection> <developerConnection>scm:git:https://gitee.com/yadong.zhang/JustAuth.git</developerConnection>
<url>https://gitee.com/yadong.zhang/JustAuth</url> <url>https://gitee.com/yadong.zhang/JustAuth</url>
</scm> </scm>
<developers> <developers>
<developer> <developer>
<name>Yadong.Zhang</name> <name>Yadong.Zhang</name>
<email>yadong.zhang0415@gmail.com</email> <email>yadong.zhang0415@gmail.com</email>
<url>https://www.zhyd.me</url> <url>https://www.zhyd.me</url>
</developer> </developer>
<developer> <developer>
<name>Yangkai.Shen</name> <name>Yangkai.Shen</name>
<email>shenyangkai1994@gmail.com</email> <email>shenyangkai1994@gmail.com</email>
<url>https://xkcoding.com</url> <url>https://xkcoding.com</url>
</developer> </developer>
<developer> <developer>
<name>Hongwei.Peng</name> <name>Hongwei.Peng</name>
<email>pengisgood@gmail.com</email> <email>pengisgood@gmail.com</email>
<url>https://github.com/pengisgood</url> <url>https://github.com/pengisgood</url>
</developer> </developer>
</developers> </developers>
<properties> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version> <java.version>1.8</java.version>
<maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target> <maven.compiler.target>1.8</maven.compiler.target>
<maven-source.version>2.2.1</maven-source.version> <maven-source.version>2.2.1</maven-source.version>
<maven-compiler.version>3.7.0</maven-compiler.version> <maven-compiler.version>3.7.0</maven-compiler.version>
<maven.test.skip>true</maven.test.skip> <maven.test.skip>true</maven.test.skip>
<hutool-version>4.5.15</hutool-version> <hutool-version>4.5.15</hutool-version>
<lombok-version>1.18.4</lombok-version> <lombok-version>1.18.4</lombok-version>
<junit-version>4.11</junit-version> <junit-version>4.11</junit-version>
<fastjson-version>1.2.58</fastjson-version> <fastjson-version>1.2.58</fastjson-version>
<alipay-sdk-version>3.7.4.ALL</alipay-sdk-version> <alipay-sdk-version>3.7.4.ALL</alipay-sdk-version>
<slf4j-version>1.7.25</slf4j-version> <slf4j-version>1.7.25</slf4j-version>
</properties> </properties>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.projectlombok</groupId> <groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId> <artifactId>lombok</artifactId>
<version>${lombok-version}</version> <version>${lombok-version}</version>
</dependency> <optional>true</optional>
<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>com.alibaba</groupId> <dependency>
<artifactId>fastjson</artifactId> <groupId>com.alibaba</groupId>
<version>${fastjson-version}</version> <artifactId>fastjson</artifactId>
</dependency> <version>${fastjson-version}</version>
<dependency> </dependency>
<groupId>com.alipay.sdk</groupId> <dependency>
<artifactId>alipay-sdk-java</artifactId> <groupId>com.alipay.sdk</groupId>
<version>${alipay-sdk-version}</version> <artifactId>alipay-sdk-java</artifactId>
<scope>compile</scope> <version>${alipay-sdk-version}</version>
</dependency> <scope>compile</scope>
<dependency> </dependency>
<groupId>org.slf4j</groupId> <dependency>
<artifactId>slf4j-simple</artifactId> <groupId>org.slf4j</groupId>
<version>${slf4j-version}</version> <artifactId>slf4j-simple</artifactId>
</dependency> <version>${slf4j-version}</version>
</dependencies> </dependency>
</dependencies>
<build> <build>
<finalName>${project.artifactId}-${project.version}</finalName> <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>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-source-plugin</artifactId>
<version>${maven-compiler.version}</version> <version>${maven-source.version}</version>
<configuration> <inherited>true</inherited>
<encoding>${project.build.sourceEncoding}</encoding> <executions>
<source>${java.version}</source> <execution>
<target>${java.version}</target> <phase>package</phase>
</configuration> <goals>
</plugin> <goal>jar-no-fork</goal>
<plugin> </goals>
<artifactId>maven-source-plugin</artifactId> </execution>
<version>${maven-source.version}</version> </executions>
<inherited>true</inherited> </plugin>
<executions> <plugin>
<execution> <groupId>org.apache.maven.plugins</groupId>
<phase>package</phase> <artifactId>maven-javadoc-plugin</artifactId>
<goals> <executions>
<goal>jar-no-fork</goal> <execution>
</goals> <phase>package</phase>
</execution> <goals>
</executions> <goal>jar</goal>
</plugin> </goals>
<plugin> </execution>
<groupId>org.apache.maven.plugins</groupId> </executions>
<artifactId>maven-javadoc-plugin</artifactId> </plugin>
</plugin> <plugin>
<plugin> <groupId>org.apache.maven.plugins</groupId>
<groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId>
<artifactId>maven-gpg-plugin</artifactId> <executions>
</plugin> <execution>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins> </plugins>
</build> </build>
<profiles> <distributionManagement>
<profile> <snapshotRepository>
<id>release</id> <id>sonatype-nexus-snapshots</id>
<build> <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
<plugins> </snapshotRepository>
<plugin> <repository>
<groupId>org.apache.maven.plugins</groupId> <id>sonatype-nexus-staging</id>
<artifactId>maven-source-plugin</artifactId> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
<version>${maven-source.version}</version> </repository>
<inherited>true</inherited> </distributionManagement>
<executions> </profile>
<execution> </profiles>
<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>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<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>
<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>
</profiles>
</project> </project>
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册