helper
Used in: 
components
- OverviewOverview
 - VersionsVersions
 - DependentsDependents
 - DependenciesDependencies
 
<dependency>
    <groupId>com.jlbtuz.fire.helper</groupId>
    <artifactId>helper</artifactId>
    <version>2.0.2.1</version>
</dependency><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> <groupId>com.jlbtuz.fire.helper</groupId> <artifactId>helper</artifactId> <packaging>pom</packaging> <name>火花工具包</name> <description>火花工具包</description> <url>https://gitee.com/csdnuser/fire-helper</url> <developers> <developer> <name>close</name> <email>close@jlbtuz.com</email> </developer> </developers> <!-- <parent> --> <!-- <groupId>org.sonatype.oss</groupId> --> <!-- <artifactId>oss-parent</artifactId> --> <!-- <version>7</version> --> <!-- </parent> --> <!-- maven私服地址 --> <repositories> <repository> <id>fireNexus</id> <url>http://csdnuser.com:8081/nexus/content/repositories/public/</url> </repository> </repositories> <!-- 配置部署的远程仓库 --> <distributionManagement> <repository> <id>oss</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> <snapshotRepository> <id>oss</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <java.version>1.8</java.version> </properties> <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> <scm> <connection>https://gitee.com/csdnuser/fire-helper.git</connection> <developerConnection>https://gitee.com/csdnuser/fire-helper.git</developerConnection> <url>https://gitee.com/csdnuser/fire-helper</url> <tag>HEAD</tag> </scm> <build> <plugins> <!-- <plugin> --> <!-- <groupId>com.github.wvengen</groupId> --> <!-- <artifactId>proguard-maven-plugin</artifactId> --> <!-- <version>2.0.13</version> --> <!-- <executions> --> <!-- <execution> --> <!-- <phase>package</phase> --> <!-- <goals> --> <!-- <goal>proguard</goal> --> <!-- </goals> --> <!-- </execution> --> <!-- </executions> --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>2.1</version> <configuration> <attach>true</attach> </configuration> <executions> <execution> <phase>compile</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- JavaDoc --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <configuration> <charset>UTF-8</charset> <encoding>UTF-8</encoding> </configuration> <executions> <execution> <id>attach-javadocs</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <additionalparam>-Xdoclint:none</additionalparam> </configuration> </execution> </executions> </plugin> <!-- GPG --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>dom4j</groupId> <artifactId>dom4j</artifactId> <version>1.6.1</version> </dependency> <dependency> <groupId>org.freemarker</groupId> <artifactId>freemarker</artifactId> <version>2.3.19</version> </dependency> </dependencies> <version>2.0.2.1</version> <modules> <module>../fire-helper-base</module> <module>../fire-helper-db</module> <module>../fire-helper-xml</module> </modules> </project>