1
0
mirror of synced 2026-05-22 21:53:18 +00:00

Merge pull request #28 from xkcoding/fix-lombok

🐛 修复 lombok 引入问题
This commit is contained in:
yadong.zhang
2019-07-23 19:20:01 +08:00
committed by GitHub
+180 -179
View File
@@ -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>
<description>
史上最全的整合第三方登录的工具,目前已支持Github、Gitee、微博、钉钉、百度、Coding、腾讯云开发者平台、OSChina、支付宝、QQ、微信、淘宝、Google、Facebook、抖音、领英、小米、微软和今日头条等第三方平台的授权登录。
Login, so easy!
</description>
<licenses>
<license>
<name>MIT</name>
<url>https://gitee.com/yadong.zhang/JustAuth/blob/master/LICENSE</url>
</license>
</licenses>
<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> <url>https://gitee.com/yadong.zhang/JustAuth</url>
<description> </scm>
史上最全的整合第三方登录的工具,目前已支持Github、Gitee、微博、钉钉、百度、Coding、腾讯云开发者平台、OSChina、支付宝、QQ、微信、淘宝、Google、Facebook、抖音、领英、小米、微软和今日头条等第三方平台的授权登录。
Login, so easy!
</description>
<licenses> <developers>
<license> <developer>
<name>MIT</name> <name>Yadong.Zhang</name>
<url>https://gitee.com/yadong.zhang/JustAuth/blob/master/LICENSE</url> <email>yadong.zhang0415@gmail.com</email>
</license> <url>https://www.zhyd.me</url>
</licenses> </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>
<scm> <properties>
<connection>scm:git:https://gitee.com/yadong.zhang/JustAuth.git</connection> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<developerConnection>scm:git:https://gitee.com/yadong.zhang/JustAuth.git</developerConnection> <java.version>1.8</java.version>
<url>https://gitee.com/yadong.zhang/JustAuth</url> <maven.compiler.source>1.8</maven.compiler.source>
</scm> <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.5.15</hutool-version>
<lombok-version>1.18.4</lombok-version>
<junit-version>4.11</junit-version>
<fastjson-version>1.2.58</fastjson-version>
<alipay-sdk-version>3.7.4.ALL</alipay-sdk-version>
<slf4j-version>1.7.25</slf4j-version>
</properties>
<developers> <dependencies>
<developer> <dependency>
<name>Yadong.Zhang</name> <groupId>org.projectlombok</groupId>
<email>yadong.zhang0415@gmail.com</email> <artifactId>lombok</artifactId>
<url>https://www.zhyd.me</url> <version>${lombok-version}</version>
</developer> <optional>true</optional>
<developer> </dependency>
<name>Yangkai.Shen</name> <dependency>
<email>shenyangkai1994@gmail.com</email> <groupId>cn.hutool</groupId>
<url>https://xkcoding.com</url> <artifactId>hutool-http</artifactId>
</developer> <version>${hutool-version}</version>
<developer> </dependency>
<name>Hongwei.Peng</name> <dependency>
<email>pengisgood@gmail.com</email> <groupId>junit</groupId>
<url>https://github.com/pengisgood</url> <artifactId>junit</artifactId>
</developer> <version>${junit-version}</version>
</developers> <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>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${slf4j-version}</version>
</dependency>
</dependencies>
<properties> <build>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <finalName>${project.artifactId}-${project.version}</finalName>
<java.version>1.8</java.version> <plugins>
<maven.compiler.source>1.8</maven.compiler.source> <plugin>
<maven.compiler.target>1.8</maven.compiler.target> <groupId>org.apache.maven.plugins</groupId>
<maven-source.version>2.2.1</maven-source.version> <artifactId>maven-compiler-plugin</artifactId>
<maven-compiler.version>3.7.0</maven-compiler.version> <version>${maven-compiler.version}</version>
<maven.test.skip>true</maven.test.skip> <configuration>
<hutool-version>4.5.15</hutool-version> <encoding>${project.build.sourceEncoding}</encoding>
<lombok-version>1.18.4</lombok-version> <source>${java.version}</source>
<junit-version>4.11</junit-version> <target>${java.version}</target>
<fastjson-version>1.2.58</fastjson-version> </configuration>
<alipay-sdk-version>3.7.4.ALL</alipay-sdk-version> </plugin>
<slf4j-version>1.7.25</slf4j-version> <plugin>
</properties> <artifactId>maven-source-plugin</artifactId>
<version>${maven-source.version}</version>
<dependencies> <inherited>true</inherited>
<dependency> <executions>
<groupId>org.projectlombok</groupId> <execution>
<artifactId>lombok</artifactId> <phase>package</phase>
<version>${lombok-version}</version> <goals>
</dependency> <goal>jar-no-fork</goal>
<dependency> </goals>
<groupId>cn.hutool</groupId> </execution>
<artifactId>hutool-http</artifactId> </executions>
<version>${hutool-version}</version> </plugin>
</dependency> <plugin>
<dependency> <groupId>org.apache.maven.plugins</groupId>
<groupId>junit</groupId> <artifactId>maven-javadoc-plugin</artifactId>
<artifactId>junit</artifactId> </plugin>
<version>${junit-version}</version> <plugin>
<scope>test</scope> <groupId>org.apache.maven.plugins</groupId>
</dependency> <artifactId>maven-gpg-plugin</artifactId>
<dependency> </plugin>
<groupId>com.alibaba</groupId> </plugins>
<artifactId>fastjson</artifactId> </build>
<version>${fastjson-version}</version> <profiles>
</dependency> <profile>
<dependency> <id>release</id>
<groupId>com.alipay.sdk</groupId> <build>
<artifactId>alipay-sdk-java</artifactId>
<version>${alipay-sdk-version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${slf4j-version}</version>
</dependency>
</dependencies>
<build>
<finalName>${project.artifactId}-${project.version}</finalName>
<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>