42 Star 138 Fork 33

恒宇少年 / html-covert-image

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 4.08 KB
一键复制 编辑 原始数据 按行查看 历史
恒宇少年 提交于 2018-11-24 14:10 . 修改方法逻辑
<?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>com.gitee.hengboy</groupId>
<artifactId>html-covert-image</artifactId>
<version>1.0.1.RELEASE</version>
<name>html-covert-image</name>
<url>https://gitee.com/hengboy/html-covert-image</url>
<packaging>jar</packaging>
<description>
Html Convert To Image
</description>
<dependencies>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>3.141.59</version>
</dependency>
<dependency>
<groupId>com.github.detro</groupId>
<artifactId>ghostdriver</artifactId>
<version>2.1.0</version>
</dependency>
<dependency>
<groupId>com.github.hui.media</groupId>
<artifactId>image-plugin</artifactId>
<version>1.0.1</version>
</dependency>
</dependencies>
<developers>
<developer>
<name>Yu Qi Yu</name>
<email>yuqiyu@vip.qq.com</email>
<organization>gitee</organization>
<organizationUrl>https://gitee.com/hengboy</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:https://gitee.com/hengboy/html-covert-image</connection>
<developerConnection>scm:git:https://gitee.com/hengboy/html-covert-image</developerConnection>
<url>https://gitee.com/hengboy/html-covert-image</url>
<tag>1.0.1.RELEASE</tag>
</scm>
<distributionManagement>
<snapshotRepository>
<id>hengyu</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>hengyu</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.0.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.10.4</version>
<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>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
<repository>
<id>yihui-maven-repo</id>
<url>https://raw.githubusercontent.com/liuyueyi/maven-repository/master/repository</url>
</repository>
</repositories>
</project>
Java
1
https://gitee.com/hengboy/html-covert-image.git
git@gitee.com:hengboy/html-covert-image.git
hengboy
html-covert-image
html-covert-image
master

搜索帮助