All Downloads are FREE. Search and download functionalities are using the official Maven repository.

META-INF.maven.com.github.ifeilong.feilong-core.pom.xml Maven / Gradle / Ivy

Go to download

feilong is a suite of core and expanded libraries that include utility classes, http, excel,cvs, io classes, and much much more.

There is a newer version: 4.0.8
Show newest version
<?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"
	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>

	<parent>
		<groupId>com.github.ifeilong</groupId>
		<artifactId>feilong-parent</artifactId>
		<version>3.0.10</version>
	</parent>

	<artifactId>feilong-core</artifactId>

	<!-- 成立年份 -->
	<inceptionYear>2008</inceptionYear>

	<!-- 会出现在site 界面 -->
	<description>${project.name} ${project.version} API</description>

	<dependencies>

		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-beans</artifactId>
			<optional>true</optional>
		</dependency>
		<!-- commons-beanutils -->
		<dependency>
			<groupId>com.github.ifeilong</groupId>
			<artifactId>feilong-lib-beanutils</artifactId>
			<version>${project.version}</version>
		</dependency>
		<!-- feilong-lib-commons-lang3 -->
		<dependency>
			<groupId>com.github.ifeilong</groupId>
			<artifactId>feilong-lib-commons-lang3</artifactId>
			<version>${project.version}</version>
		</dependency>

		<!-- **********************仅仅 统一下版本************************************** -->

		<!-- commons-collections 仅仅 统一下版本 feilong platform 不直接使用这个jar -->
		<!-- commons-beanutils 需要 -->

		<!-- xml-apis:xml-apis 这2个包的类在jdk1.6里自带有了,可能有冲突,如果你的运行环境是1.6的话就可以删掉这2个包 -->

		<!-- 规范下 xercesImpl版本 -->
		<!-- 解决This parser does not support specification "null" version "null" -->

		<!-- xerces:xercesImpl 这2个包的类在jdk1.6里自带有了,可能有冲突,如果你的运行环境是1.6的话就可以删掉这2个包 -->
	</dependencies>

	<build>
		<plugins>

			<!-- 打包时,添加信息 -->
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-jar-plugin</artifactId>
				<configuration>
					<archive>
						<manifest>
							<addClasspath>true</addClasspath>
							<classpathPrefix>lib/</classpathPrefix>
							<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
							<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
						</manifest>
						<manifestEntries>
							<copyright>feilong</copyright>
						</manifestEntries>
					</archive>
				</configuration>
			</plugin>

		</plugins>
	</build>

	<reporting>
		<plugins>

			<!-- 单元测试报告 -->
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-report-plugin</artifactId>
				<version>${v.maven-surefire-plugin}</version>
			</plugin>
		</plugins>
	</reporting>

</project>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy