1 Star 1 Fork 0

longsebo/securitydb

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 10.18 KB
一键复制 编辑 原始数据 按行查看 历史
longsebo 提交于 2021-06-25 18:25 +08:00 . 1.增加in搜索功能
<!-- 上传私服命令行:
mvn deploy:deploy-file -DgroupId=org.apache.struts -DartifactId=Struts-Layout -Dversion=1.4.0-RC1 -Dpackaging=jar -Dfile=D:\eclipse38_dev\qb5activiti\WebContent\WEB-INF\lib\Struts-Layout-1.4.0-RC1.jar
mvn clean package -Dmaven.test.skip=true
-->
<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>
<!-- 配置私服使用信息 -->
<!-- <repositories> -->
<!-- <repository> -->
<!-- <id>nexus-jar</id> -->
<!-- <name>Team Nexus jar Repository</name> -->
<!-- <url>http://mavensvr.jinbionline.com:6060/repository/maven-public/</url> -->
<!-- </repository> -->
<!-- </repositories> -->
<!-- <pluginRepositories> -->
<!-- <pluginRepository> -->
<!-- <id>nexus-plugin</id> -->
<!-- <name>Team Nexus plugin Repository</name> -->
<!-- <url>http://mavensvr.jinbionline.com:6060/repository/maven-public/</url> -->
<!-- </pluginRepository> -->
<!-- </pluginRepositories> -->
<parent>
<!-- spring boot项目的parent -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.4.RELEASE</version>
</parent>
<groupId>com.dfhc.securitydb</groupId>
<artifactId>securitydb</artifactId>
<version>0.1.9-SNAPSHOT</version>
<packaging>war</packaging>
<name>securitydb</name>
<dependencies>
<dependency>
<!-- spring boot 引入Web模块。自动配置:tomcat、springmvc、jackson等 -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<artifactId>spring-boot-starter-logging</artifactId>
<groupId>org.springframework.boot</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<!-- 引入spring boot actuator监控 -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper</artifactId>
<version>4.1.0</version>
</dependency>
<!-- MyBatis提供了拦截器接口,我们可以实现自己的拦截器, 将其作为一个plugin装入到SqlSessionFactory中。 Github上有位开发者写了一个分页插件,我觉得使用起来还可以,挺方便的。
Github项目地址: https://github.com/pagehelper/Mybatis-PageHelper -->
<!-- <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper</artifactId>
<version>4.1.0</version> </dependency> -->
<!-- tomcat 的支持. -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<!-- 添加<scope>provided</scope>,因为provided表明该包只在编译和测试的时候用 -->
<scope>provided</scope>
</dependency>
<dependency>
<!-- jsp页面支持 -->
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-jasper</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-log4j</artifactId>
<!-- 这里需要指定版本,否则报错【有可能是spring-boot-1.5.4.RELEASE版本没有管理log4j版本的原因】 -->
<version>1.3.2.RELEASE</version>
</dependency>
<!-- spring boot集成Swagger2 -->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>2.6.1</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>2.6.1</version>
</dependency>
<!-- devtools可以实现页面热部署(即页面修改后会立即生效,这个可以直接在application.properties文件中配置spring.thymeleaf.cache=false或者视图解析器设置缓存为false来实现),
实现类文件热部署(类文件修改后不会立即生效,待编译后生效),实现对属性文件的热部署。 即devtools会监听classpath下的文件变动,并且会立即重启应用(发生在保存时机),注意:因为其采用的虚拟机机制,该项重启是很快的 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
<!-- optional=true,依赖不会传递,该项目依赖devtools;之后依赖SpringBoot1项目的项目如果想要使用devtools,需要重新引入 -->
</dependency>
<!-- jasperreports -->
<dependency>
<groupId>net.sf.jasperreports</groupId>
<artifactId>jasperreports</artifactId>
<version>6.3.1</version>
</dependency>
<!-- StringHelper -->
<dependency>
<groupId>com.dfhc.util.StringHelper</groupId>
<artifactId>dfhc-stringhelper</artifactId>
<version>1.0.2-SNAPSHOT</version>
</dependency>
<!-- FileOperateHelper -->
<dependency>
<groupId>com.dfhc.util.FileOperateHelper</groupId>
<artifactId>dfhc-fileoperatehelper</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>
<!-- commons-io -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
</dependency>
<!-- commons-lang3 -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.5</version>
</dependency>
<!-- concurrencycontrol -->
<dependency>
<groupId>com.dfhc.pub.ConcurrencyControl</groupId>
<artifactId>dfhc-concurrencycontrol</artifactId>
<version>1.0.1-SNAPSHOT</version>
</dependency>
<!-- ConvertHelper -->
<dependency>
<groupId>com.dfhc.util.ConvertHelper</groupId>
<artifactId>dfhc-converthelper</artifactId>
<version>1.0.2-SNAPSHOT</version>
</dependency>
<!-- commons-lang -->
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.4</version>
</dependency>
<!-- DateUtil -->
<dependency>
<groupId>com.dfhc.util.DateUtil</groupId>
<artifactId>dfhc-dateutil</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>
<!-- ISystemConstant -->
<dependency>
<groupId>com.dfhc.ISystemConstant</groupId>
<artifactId>dfhc-systemconstant</artifactId>
<version>1.0.6-SNAPSHOT</version>
</dependency>
<!-- JspHelper -->
<dependency>
<groupId>com.dfhc.util.JspHelper</groupId>
<artifactId>dfhc-jsphelper</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>
<!-- fileupload -->
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>1.3.2</version>
</dependency>
<!-- fastjson -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.5</version>
</dependency>
<!-- httpclient -->
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.4.1</version>
</dependency>
<!-- aes 加密解密包 -->
<dependency>
<groupId>com.dfhc.util.AES</groupId>
<artifactId>dfhc-aes</artifactId>
<version>1.0.6-SNAPSHOT</version>
</dependency>
<!-- rsa 加密解密包 -->
<dependency>
<groupId>com.dfhc.util.RSA</groupId>
<artifactId>dfhc-rsa</artifactId>
<version>1.0.2-SNAPSHOT</version>
</dependency>
<!-- commons-codec -->
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.6</version>
</dependency>
<!-- bcprov-jdk15on jar -->
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
<version>1.59</version>
</dependency>
<!-- bcprov-ext-jdk15on jar -->
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-ext-jdk15on</artifactId>
<version>1.59</version>
</dependency>
<!-- qb5activiti工具类 -->
<dependency>
<groupId>com.dfhc.util.HttpClientUtil</groupId>
<artifactId>dfhc-httpclientutil</artifactId>
<version>1.0.1-SNAPSHOT</version>
</dependency>
<!-- httpmime -->
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpmime</artifactId>
<version>4.5.5</version>
</dependency>
<!-- https://mvnrepository.com/artifact/junit/junit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<!-- MD5Util -->
<dependency>
<groupId>com.dfhc.util.MD5Util</groupId>
<artifactId>dfhc-md5util</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>
<!-- sequenceclientservice 序列客户端服务 -->
<dependency>
<groupId>com.dfhc.SequenceClientService</groupId>
<artifactId>dfhc-sequenceclientservice</artifactId>
<version>1.0.6-SNAPSHOT</version>
</dependency>
<!-- FileDownloadService -->
<dependency>
<groupId>com.dfhc.pub.service.FileDownloadService</groupId>
<artifactId>dfhc-filedownloadservice</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.hamcrest/hamcrest-core -->
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<!-- 配置spring boot之maven插件 -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<!-- <configuration> fork : 如果没有该项配置,devtools不会起作用,即应用不会restart 【实测:可以不配置】
<fork>true</fork> </configuration> -->
</plugin>
</plugins>
</build>
<properties>
<!-- 文件拷贝时的编码 -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<!-- 编译时的编码 -->
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
</properties>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/longsebo/securitydb.git
git@gitee.com:longsebo/securitydb.git
longsebo
securitydb
securitydb
master

搜索帮助