当前仓库属于暂停状态,部分功能使用受限,详情请查阅 仓库状态说明
3 Star 9 Fork 3

飞龙/feilong-taglib
暂停

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 3.13 KB
一键复制 编辑 原始数据 按行查看 历史
飞龙 提交于 2020-04-03 19:49 . :bookmark:upgrade-version-2.1.0
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.feilong.platform</groupId>
<artifactId>parent</artifactId>
<version>2.1.0</version>
</parent>
<artifactId>feilong-taglib</artifactId>
<name>feilong-taglib</name>
<description>${project.name} ${project.version} API</description>
<!-- 软件配置管理SCM (Software Configuration Management), 如cvs ,svn ,git -->
<scm>
<url>https://github.com/venusdrogon/feilong-taglib</url>
<connection>scm:git:https://github.com/venusdrogon/feilong-taglib</connection>
<developerConnection>scm:git:git@github.com:venusdrogon/feilong-taglib.git</developerConnection>
</scm>
<dependencies>
<dependency>
<groupId>com.feilong.platform</groupId>
<artifactId>feilong-core</artifactId>
</dependency>
<dependency>
<groupId>com.feilong.platform</groupId>
<artifactId>feilong-servlet</artifactId>
</dependency>
<dependency>
<groupId>com.feilong.platform</groupId>
<artifactId>feilong-security</artifactId>
<optional>true</optional>
</dependency>
<!-- slf4j-log4j12 -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<optional>true</optional><!-- 日志系统根据每个项目 决定 -->
</dependency>
<!-- log4j -->
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<optional>true</optional><!-- 日志系统根据每个项目 决定 -->
</dependency>
<!--feilong-velocity -->
<dependency>
<groupId>com.feilong.platform</groupId>
<artifactId>feilong-velocity</artifactId>
</dependency>
<!--用于 com.feilong.taglib.display.barcode.BarcodeTag -->
<dependency>
<groupId>com.feilong.platform.tools</groupId>
<artifactId>feilong-tools-barcode</artifactId>
<version>${version.feilong-platform}</version>
<optional>true</optional>
</dependency>
<!--用于 com.feilong.taglib.display.barcode.BarcodeTag -->
<dependency>
<groupId>com.feilong.platform</groupId>
<artifactId>feilong-accessor</artifactId>
<version>${version.feilong-platform}</version>
<optional>true</optional>
</dependency>
<!--*******************servlet-api && jsp-api************************* -->
<!-- servlet-api -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
</dependency>
<dependency>
<groupId>com.feilong.platform</groupId>
<artifactId>feilong-core-extension</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<!-- maven-surefire-plugin -->
<plugin>
<inherited>false</inherited>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>false</skip>
<includes>
<include>**/FeiLongTaglibSuiteTests</include>
</includes>
</configuration>
</plugin>
</plugins>
</build>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/ifeilong/feilong-taglib.git
git@gitee.com:ifeilong/feilong-taglib.git
ifeilong
feilong-taglib
feilong-taglib
master

搜索帮助