123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- <?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>spring-boot-dingtalk-robot-starter</artifactId>
- <version>1.0.4.RELEASE</version>
- <packaging>jar</packaging>
- <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>
- <java.version>1.8</java.version>
- <spring-boot.version>2.2.5.RELEASE</spring-boot.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- <version>${spring-boot.version}</version>
- <exclusions>
- <exclusion>
- <artifactId>spring-boot-starter-tomcat</artifactId>
- <groupId>org.springframework.boot</groupId>
- </exclusion>
- </exclusions>
- <optional>true</optional>
- </dependency>
- <!-- SpringBoot configuration prompt. -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-configuration-processor</artifactId>
- <version>${spring-boot.version}</version>
- <optional>true</optional>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <!-- Source -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-source-plugin</artifactId>
- <version>3.2.1</version>
- <executions>
- <execution>
- <phase>package</phase>
- <goals>
- <goal>jar-no-fork</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <!--Compiler-->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.6.2</version>
- <configuration>
- <source>${java.version}</source>
- <target>${java.version}</target>
- <fork>true</fork>
- <verbose>true</verbose>
- <encoding>UTF-8</encoding>
- <showWarnings>false</showWarnings>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <profiles>
- <profile>
- <id>release</id>
- <build>
- <plugins>
- <!-- 生成 sha1 校验文件 -->
- <plugin>
- <groupId>net.nicoulaj.maven.plugins</groupId>
- <artifactId>checksum-maven-plugin</artifactId>
- <version>1.11</version>
- <executions>
- <execution>
- <id>checksum-maven-plugin-files</id>
- <phase>install</phase>
- <goals>
- <goal>files</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <fileSets>
- <fileSet>
- <directory>${project.build.directory}</directory>
- <includes>
- <include>*.jar</include>
- <include>*.tar.gz</include>
- </includes>
- </fileSet>
- </fileSets>
- <algorithms>
- <algorithm>SHA-1</algorithm>
- </algorithms>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <distributionManagement>
- <snapshotRepository>
- <id>sonatype-nexus-snapshots</id>
- <name>Sonatype Nexus Snapshots</name>
- <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
- </snapshotRepository>
- <repository>
- <id>sonatype-nexus-staging</id>
- <name>Nexus Release Repository</name>
- <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</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>
- <organization>
- <name>snowheart</name>
- <url>http://www.snowheart.cn/</url>
- </organization>
- <developers>
- <developer>
- <name>Wanxiang Liu</name>
- <email>sxjwzxlwx@yeah.net</email>
- <organization>snowheart</organization>
- </developer>
- <developer>
- <name>Alex Hu</name>
- <email>pa769@qq.com</email>
- <organization>dimaidt</organization>
- </developer>
- </developers>
- <distributionManagement>
- <repository>
- <id>yiidata-maven-release</id>
- <name>Nexus Release Repository</name>
- <url>http://www.yiidata.net/maven/repository/maven-releases/</url>
- </repository>
- </distributionManagement>
- </project>
|