jarvis-framework-tool
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.jarvisframework</groupId>
<artifactId>jarvis-framework-tool</artifactId>
<version>1.0.5.RELEASE</version>
</dependency><?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/maven-v4_0_0.xsd">
<!-- The first line of code for the jarvis (2019-11-08 16:00:00) -->
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.jarvisframework</groupId>
<artifactId>jarvis-framework-tool</artifactId>
<version>1.0.5.RELEASE</version>
<packaging>pom</packaging>
<name>${project.artifactId}</name>
<description>Jarvis框架工具类库</description>
<url>https://github.com/jarvisframework/jarvis-framework-tool</url>
<!-- 还未注册的域名 -->
<!--<url>jarvisframework.com</url>-->
<properties>
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>utf-8</project.reporting.outputEncoding>
<compile.version>8</compile.version>
<junit.version>4.13</junit.version>
<hutool.version>5.3.8</hutool.version>
</properties>
<modules>
<module>jarvis-tool-all</module>
<module>jarvis-tool-core</module>
<module>jarvis-tool-cache</module>
<module>jarvis-tool-crypto</module>
<module>jarvis-tool-http</module>
<module>jarvis-tool-poi</module>
<module>jarvis-tool-email</module>
<module>jarvis-tool-extra</module>
<module>jarvis-tool-setting</module>
<module>jarvis-tool-log</module>
</modules>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>${compile.version}</source>
<target>${compile.version}</target>
</configuration>
</plugin>
</plugins>
</build>
<licenses>
<license>
<name>Mulan Permissive Software License,Version 1</name>
<url>http://license.coscl.org.cn/MulanPSL</url>
</license>
</licenses>
<developers>
<developer>
<name>DougWang</name>
<email>17621987665@163.com</email>
</developer>
</developers>
<scm>
<connection>scm:git@github.com:jarvisframework/jarvis-framework-tool.git</connection>
<developerConnection>scm:git@github.com:jarvisframework/jarvis-framework-tool.git</developerConnection>
<url>git@github.com:jarvisframework/jarvis-framework-tool.git</url>
</scm>
<profiles>
<profile>
<id>release</id>
<distributionManagement>
<snapshotRepository>
<id>oss</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>oss</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<build>
<plugins>
<!-- Source -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>oss</id>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Javadoc -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<configuration>
<show>private</show>
<nohelp>true</nohelp>
<charset>UTF-8</charset>
<encoding>UTF-8</encoding>
<docencoding>UTF-8</docencoding>
<!-- TODO 临时解决不规范的javadoc生成报错,后面要规范化后把这行去掉 -->
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Gpg Signature -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>oss</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>