1 Star 0 Fork 1

HServer / hserver-plugs-beetlsql

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 5.24 KB
一键复制 编辑 原始数据 按行查看 历史
黑小马 提交于 2021-06-20 11:49 . 优化插件
<?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>net.hserver.plugins.beetlsql</groupId>
<artifactId>plugins.beetlsql</artifactId>
<version>3.3</version>
<name>HServer-Plugin-BeetlSql</name>
<url>https://gitee.com/HServer/hserver-plugs-beetlsql</url>
<description>一个基于HServer的SQL插件工具</description>
<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>
<tag>master</tag>
<connection>https://gitee.com/HServer/hserver-plugs-beetlsql.git</connection>
<developerConnection>https://hserver.top/</developerConnection>
<url>https://gitee.com/HServer/hserver-plugs-beetlsql.git</url>
</scm>
<developers>
<developer>
<name>heixiaoma</name>
<email>heixiaoma@gmail.com</email>
<url>https://gitee.com/HServer/HServer</url>
</developer>
</developers>
<properties>
<java.version>1.8</java.version>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<skipTests>true</skipTests>
<HServer.version>2.9.70</HServer.version>
<beetlsql.version>3.4.3-RELEASE</beetlsql.version>
</properties>
<dependencies>
<dependency>
<groupId>top.hserver</groupId>
<artifactId>HServer</artifactId>
<version>${HServer.version}</version>
<scope>provided</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/com.ibeetl/beetlsql -->
<dependency>
<groupId>com.ibeetl</groupId>
<artifactId>beetlsql</artifactId>
<version>${beetlsql.version}</version>
</dependency>
</dependencies>
<profiles>
<profile>
<id>release</id>
<distributionManagement>
<snapshotRepository>
<id>heixiaoma</id>
<url>
https://oss.sonatype.org/content/repositories/snapshots/
</url>
</snapshotRepository>
<repository>
<id>heixiaoma</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>2.4</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.2</version>
<configuration>
<charset>UTF-8</charset>
<docencoding>UTF-8</docencoding>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</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>
</profile>
</profiles>
</project>
Java
1
https://gitee.com/HServer/hserver-plugs-beetlsql.git
git@gitee.com:HServer/hserver-plugs-beetlsql.git
HServer
hserver-plugs-beetlsql
hserver-plugs-beetlsql
master

搜索帮助