com.alibaba.fastjson的pom
时间: 2023-09-12 07:08:57 浏览: 78
com.alibaba.fastjson的pom.xml文件如下所示:
```xml
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.78</version>
<packaging>jar</packaging>
<name>fastjson</name>
<description>Fast JSON Processor</description>
<url>https://github.com/alibaba/fastjson</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Wu Yongzheng</name>
<email>wuyongzheng@alibaba-inc.com</email>
<organization>Alibaba Group</organization>
<organizationUrl>https://www.alibaba.com/</organizationUrl>
<roles>
<role>Developer</role>
</roles>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
```
这是一份Maven项目的配置文件,描述了该项目的基本信息、依赖关系、构建配置等信息。其中,groupId、artifactId、version等元素是Maven项目的基本信息;dependencies元素描述了该项目所依赖的其他库;build元素描述了该项目的构建配置,包括编译器版本、插件等。
阅读全文