鱼C论坛

 找回密码
 立即注册
查看: 2137|回复: 1

[技术交流] 构建dubbo分布式平台-maven构建ant-utils工具项目

[复制链接]
发表于 2018-8-31 15:56:16 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
1. 创建ant-utils工具包子项目,继承ant-parent根项目,其中pom.xml配置如下:
<span style="font-size: 14px;"><?xml version="1.0"?>
<project
        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
        xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
        <modelVersion>4.0.0</modelVersion>
        <parent>
                <groupId>com.sml.sz</groupId>
                <artifactId>ant-project</artifactId>
                <version>1.0.0</version>
        </parent>
        <artifactId>ant-utils</artifactId>
        <name>ant-utils</name>
        <url>http://maven.apache.org</url>
        <description>ant核心工具包,提供整个架构通用工具类库</description>
 
        <dependencies>
                <!-- 通用工具包 -->
                <dependency>
                        <groupId>org.apache.commons</groupId>
                        <artifactId>commons-lang3</artifactId>
                        <version>${commons-lang3.version}</version>
                </dependency>
                <dependency>
                        <groupId>commons-io</groupId>
                        <artifactId>commons-io</artifactId>
                        <version>${commons-io.version}</version>
                </dependency>
                <dependency>
                        <groupId>commons-codec</groupId>
                        <artifactId>commons-codec</artifactId>
                        <version>${commons-codec.version}</version>
                </dependency>
                <dependency>
                        <groupId>commons-fileupload</groupId>
                        <artifactId>commons-fileupload</artifactId>
                        <version>${commons-fileupload.version}</version>
                </dependency>
                <dependency>
                        <groupId>commons-beanutils</groupId>
                        <artifactId>commons-beanutils</artifactId>
                        <version>${commons-beanutils.version}</version>
                        <exclusions>
                                <exclusion>
                                        <groupId>commons-logging</groupId>
                                        <artifactId>commons-logging</artifactId>
                                </exclusion>
                        </exclusions>
                </dependency>
 
                <!-- jackson json 包-->
                <dependency>
                        <groupId>com.fasterxml.jackson.core</groupId>
                        <artifactId>jackson-core</artifactId>
                        <version>${jackson.version}</version>
                </dependency>
                <dependency>
                        <groupId>com.fasterxml.jackson.core</groupId>
                        <artifactId>jackson-databind</artifactId>
                        <version>${jackson.version}</version>
                </dependency>
                <dependency>
                        <groupId>com.fasterxml.jackson.core</groupId>
                        <artifactId>jackson-annotations</artifactId>
                        <version>${jackson.version}</version>
                </dependency>
                <dependency>
                        <groupId>com.fasterxml.jackson.module</groupId>
                        <artifactId>jackson-module-jaxb-annotations</artifactId>
                        <version>${jackson.version}</version>
                </dependency>
 
                <!-- xstream包,将Java对象和xml文档相互转换-->
                <dependency>
                        <groupId>com.thoughtworks.xstream</groupId>
                        <artifactId>xstream</artifactId>
                        <version>${xstream.version}</version>
                </dependency>
 
                <!-- pojo copy javaBean的映射工具包,可以进行简单的属性映射、复杂的类型映射、双向映射、递归映射-->
                <dependency>
                        <groupId>net.sf.dozer</groupId>
                        <artifactId>dozer</artifactId>
                        <version>${dozer.version}</version>
                </dependency>
 
                <!-- freemarker 模板引擎包 -->
                <dependency>
                        <groupId>org.freemarker</groupId>
                        <artifactId>freemarker</artifactId>
                        <version>${freemarker.version}</version>
                </dependency>
 
                <!-- java邮件发送 -->
                <dependency>
                        <groupId>javax.mail</groupId>
                        <artifactId>mail</artifactId>
                        <version>${email.version}</version>
                </dependency>
                <dependency>
                        <groupId>javax.activation</groupId>
                        <artifactId>activation</artifactId>
                        <version>1.1.1</version>
                </dependency>
 
                <!-- POI相关的包 -->
                <dependency>
                        <groupId>org.apache.poi</groupId>
                        <artifactId>poi</artifactId>
                        <version>${poi.version}</version>
                </dependency>
                <dependency>
                        <groupId>org.apache.poi</groupId>
                        <artifactId>poi-ooxml</artifactId>
                        <version>${poi.version}</version>
                </dependency>
                <dependency>
                        <groupId>org.apache.poi</groupId>
                        <artifactId>poi-ooxml-schemas</artifactId>
                        <version>${poi.version}</version>
                </dependency>
 
                <!-- 图片数据元提取  -->
                <dependency>
                        <groupId>com.drewnoakes</groupId>
                        <artifactId>metadata-extractor</artifactId>
                        <version>2.6.2</version>
                </dependency>
 
                <!-- 条形码、二维码生成 -->
                <dependency>
                        <groupId>com.google.zxing</groupId>
                        <artifactId>core</artifactId>
                        <version>2.2</version>
                </dependency>
                <dependency>
                        <groupId>com.google.zxing</groupId>
                        <artifactId>javase</artifactId>
                        <version>2.2</version>
                </dependency>
 
                <!-- 缓存相关包 -->
                <dependency>
                        <groupId>net.sf.ehcache</groupId>
                        <artifactId>ehcache-core</artifactId>
                        <version>${ehcache.version}</version>
                </dependency>
                <dependency>
                        <groupId>net.sf.ehcache</groupId>
                        <artifactId>ehcache-web</artifactId>
                        <version>${ehcache-web.version}</version>
                </dependency>
                <dependency>
                        <groupId>redis.clients</groupId>
                        <artifactId>jedis</artifactId>
                        <version>2.5.1</version>
                </dependency>
 
                <!-- spring相关包 -->
                <dependency>
                        <groupId>org.springframework</groupId>
                        <artifactId>spring-context-support</artifactId>
                        <version>${spring.version}</version>
                </dependency>
                
                <!-- httpclient 依赖包,使用的时候才依赖 -->
                <dependency>
                        <groupId>org.apache.httpcomponents</groupId>
                        <artifactId>httpclient</artifactId>
                        <version>4.5.2</version>
                </dependency>
        </dependencies>
        <profiles>
                <profile>
                        <id>sit</id>
                        <activation>
                                <property>
                                        <name>environment.type</name>
                                        <value>sit</value>
                                </property>
                        </activation>
                        <build>
                                <plugins>
                                        <plugin>
                                                <groupId>com.google.code.maven-replacer-plugin</groupId>
                                                <artifactId>replacer</artifactId>
                                                <configuration>
                                                        <includes>
                                                                <include>target/classes/logback.properties</include>
                                                        </includes>
                                                        <replacements>
                                                                <replacement>
                                                                        <token>=dev</token>
                                                                        <value>=sit</value>
                                                                </replacement>
                                                        </replacements>
                                                </configuration>
                                        </plugin>
                                </plugins>
                        </build>
                </profile>
                <profile>
                        <id>uat</id>
                        <activation>
                                <property>
                                        <name>environment.type</name>
                                        <value>uat</value>
                                </property>
                        </activation>
                        <build>
                                <plugins>
                                        <plugin>
                                                <groupId>com.google.code.maven-replacer-plugin</groupId>
                                                <artifactId>replacer</artifactId>
                                                <configuration>
                                                        <includes>
                                                                <include>target/classes/logback.properties</include>
                                                        </includes>
                                                        <replacements>
                                                                <replacement>
                                                                        <token>=dev</token>
                                                                        <value>=uat</value>
                                                                </replacement>
                                                        </replacements>
                                                </configuration>
                                        </plugin>
                                </plugins>
                        </build>
                </profile>
                <profile>
                        <id>performance</id>
                        <activation>
                                <property>
                                        <name>environment.type</name>
                                        <value>performance</value>
                                </property>
                        </activation>
                        <build>
                                <plugins>
                                        <plugin>
                                                <groupId>com.google.code.maven-replacer-plugin</groupId>
                                                <artifactId>replacer</artifactId>
                                                <configuration>
                                                        <includes>
                                                                <include>target/classes/logback.properties</include>
                                                        </includes>
                                                        <replacements>
                                                                <replacement>
                                                                        <token>=dev</token>
                                                                        <value>=perf</value>
                                                                </replacement>
                                                        </replacements>
                                                </configuration>
                                        </plugin>
                                </plugins>
                        </build>
                </profile>
                <profile>
                        <id>production</id>
                        <activation>
                                <property>
                                        <name>environment.type</name>
                                        <value>production</value>
                                </property>
                        </activation>
                        <build>
                                <plugins>
                                        <plugin>
                                                <groupId>com.google.code.maven-replacer-plugin</groupId>
                                                <artifactId>replacer</artifactId>
                                                <configuration>
                                                        <includes>
                                                                <include>target/classes/logback.properties</include>
                                                        </includes>
                                                        <replacements>
                                                                <replacement>
                                                                        <token>=dev</token>
                                                                        <value>=prd</value>
                                                                </replacement>
                                                        </replacements>
                                                </configuration>
                                        </plugin>
                                </plugins>
                        </build>
                </profile>
        </profiles>
</project></span>
愿意了解框架技术或者源码的朋友直接求求交流分享技术 二零四二八四九二三七

  此项目中只包含了通用的工具类库,包括:配置文件、文件处理、手机短信、email邮箱处理、redis缓存处理、collection集合处理、cookie处理、时间工具、freemarker模板工具、httpclient工具、多线程等。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2018-8-31 15:57:50 | 显示全部楼层
欢迎大家一起交流~
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-12-23 07:23

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表