1 Star 0 Fork 35

guoguo/xjsonkit

forked from Troy/xjsonkit 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 4.37 KB
一键复制 编辑 原始数据 按行查看 历史
Troy 提交于 2023-10-20 14:23 . v1.4.3: 依赖升级 data -> 1.5.3
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>cn.zhxu</groupId>
<artifactId>xjsonkit</artifactId>
<version>1.4.3</version>
<name>JsonKit</name>
<packaging>pom</packaging>
<modules>
<module>xjsonkit-api</module>
<module>xjsonkit-fastjson</module>
<module>xjsonkit-fastjson2</module>
<module>xjsonkit-fastjson2-jsonb</module>
<module>xjsonkit-gson</module>
<module>xjsonkit-jackson</module>
<module>xjsonkit-jackson-xml</module>
<module>xjsonkit-jackson-yaml</module>
<module>xjsonkit-snack3</module>
<module>xjsonkit-test</module>
</modules>
<properties>
<java-version>1.8</java-version>
<data.version>1.5.3</data.version>
<junit.version>4.13.2</junit.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<description>超轻量级 JSON 序列化与反序列化 门面工具</description>
<url>https://gitee.com/troyzhxu/xjsonkit</url>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>Troy</name>
<email>1573555987@qq.com</email>
<organization>zhxu</organization>
<organizationUrl>https://zhxu.cn/</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:https://gitee.com/troyzhxu/xjsonkit.git</connection>
<developerConnection>scm:git:https://gitee.com/troyzhxu/xjsonkit.git</developerConnection>
<url>https://gitee.com/troyzhxu/xjsonkit</url>
<tag>v1.4.3</tag>
</scm>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<mavenExecutorId>forked-path</mavenExecutorId>
<useReleaseProfile>false</useReleaseProfile>
<arguments>-Psonatype-oss-release</arguments>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<executions>
<execution>
<id>default-compile</id>
<configuration>
<jdkToolchain>
<version>11</version>
</jdkToolchain>
<release>11</release>
</configuration>
</execution>
<execution>
<id>base-compile</id>
<goals>
<goal>compile</goal>
</goals>
<configuration>
<excludes>
<exclude>module-info.java</exclude>
</excludes>
</configuration>
</execution>
</executions>
<configuration>
<jdkToolchain>
<version>[1.8,17)</version>
</jdkToolchain>
<source>${java-version}</source>
<target>${java-version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.3.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/itwennet/xjsonkit.git
git@gitee.com:itwennet/xjsonkit.git
itwennet
xjsonkit
xjsonkit
master

搜索帮助