1 Star 0 Fork 52

Rbang/dingtalk-robot

forked from snowheart/dingtalk-robot 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 5.28 KB
一键复制 编辑 原始数据 按行查看 历史
刘万想 提交于 2018-04-06 23:08 . 1.增加版本改动说明
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>cn.snowheart</groupId>
<artifactId>dingtalk-robot</artifactId>
<packaging>pom</packaging>
<version>${dingtalk-robot-version}</version>
<modules>
<module>spring-boot-dingtalk-robot-starter</module>
<module>dingtalk-robot-demo</module>
</modules>
<name>dingtalk-robot</name>
<url>https://gitee.com/snowheart/dingtalk-robot.git</url>
<description>一个用Java打造的方便钉钉群机器人推送消息的轮子</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<dingtalk-robot-version>1.0.0.RELEASE</dingtalk-robot-version>
<spring-boot-version>1.5.9.RELEASE</spring-boot-version>
</properties>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<!-- Source -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<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>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- GPG -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<!--Compiler-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<fork>true</fork>
<verbose>true</verbose>
<encoding>UTF-8</encoding>
<showWarnings>false</showWarnings>
</configuration>
</plugin>
<!--Release-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.1</version>
</plugin>
</plugins>
</build>
<distributionManagement>
<snapshotRepository>
<id>snowheart</id>
<url>http://nexus.snowheart.cn/nexus/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>snowheart</id>
<url>http://nexus.snowheart.cn/nexus/content/repositories/releases/</url>
</repository>
</distributionManagement>
</profile>
</profiles>
<licenses>
<license>
<name>GNU GENERAL PUBLIC LICENSE, Version 3</name>
<url>https://gitee.com/snowheart/dingtalk-robot/blob/master/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<tag>master</tag>
<url>git@gitee.com:snowheart/dingtalk-robot.git</url>
<connection>scm:git:git@gitee.com:snowheart/dingtalk-robot.git</connection>
<developerConnection>scm:git:git@gitee.com:snowheart/dingtalk-robot.git</developerConnection>
</scm>
<developers>
<developer>
<name>Wanxiang Liu</name>
<email>sxjwzxlwx@yeah.net</email>
<organization>snowheart</organization>
</developer>
</developers>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/Rbang/dingtalk-robot.git
git@gitee.com:Rbang/dingtalk-robot.git
Rbang
dingtalk-robot
dingtalk-robot
master

搜索帮助