presto-spring-boot-starter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.polarquant.data</groupId>
<artifactId>presto-spring-boot-starter</artifactId>
<version>1.0.0.RELEASE</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>com.polarquant.data</groupId>
<artifactId>presto-spring-boot-starter</artifactId>
<version>1.0.0.RELEASE</version>
<name>presto-spring-boot-starter</name>
<description>SpringBoot Starter for using Presto</description>
<url>https://github.com/ifengkou/spring-boot-starter-data-presto</url>
<organization>
<name>PolarQuant, Inc.</name>
<url>https://www.polarquant.com</url>
</organization>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<developers>
<developer>
<name>sloong</name>
<email>ifengkou@hotmail.com</email>
<organization>Analysys, Inc.</organization>
<organizationUrl>https://www.analysys.cn</organizationUrl>
</developer>
<developer>
<name>LoganShen</name>
<email>shenlongguang@polarquant.com</email>
<organization>PolarQuant, Inc.</organization>
<organizationUrl>https://www.polarquant.com</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/ifengkou/spring-boot-starter-data-presto.git</connection>
<developerConnection>scm:git:ssh://git@github.com/ifengkou/spring-boot-starter-data-presto.git</developerConnection>
<url>https://github.com/ifengkou/spring-boot-starter-data-presto</url>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/ifengkou/spring-boot-starter-data-presto/issues</url>
</issueManagement>
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
<version>2.3.4.RELEASE</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>io.prestosql</groupId>
<artifactId>presto-jdbc</artifactId>
<version>322</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
<version>1.1.24</version>
</dependency>
<dependency>
<groupId>com.polarquant.data</groupId>
<artifactId>presto-spring-boot-autoconfigure</artifactId>
<version>1.0.0.RELEASE</version>
</dependency>
</dependencies>
<profiles>
<profile>
<id>github</id>
<build>
<plugins>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.1</version>
<configuration>
<altDeploymentRepository>
internal.repo::default::file://${project.build.directory}/mvn-repo
</altDeploymentRepository>
</configuration>
</plugin>
<plugin>
<groupId>com.github.github</groupId>
<artifactId>site-maven-plugin</artifactId>
<version>0.12</version>
<configuration>
<message>Maven artifacts for ${project.version}</message>
<noJekyll>true</noJekyll>
<outputDirectory>${project.build.directory}/mvn-repo</outputDirectory>
<branch>refs/heads/master</branch>
<includes>
<include>**/*</include>
</includes>
<repositoryName>maven-repo</repositoryName>
<repositoryOwner>ifengkou</repositoryOwner>
</configuration>
<executions>
<execution>
<goals>
<goal>site</goal>
</goals>
<phase>deploy</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>github</id>
<name>GitHub ifengkou Apache Maven Packages</name>
<url>https://maven.pkg.github.com/ifengkou/maven-repo</url>
</repository>
</distributionManagement>
</profile>
<profile>
<id>release</id>
<build>
<plugins>
<!-- Compile -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<!-- gpg plugin,用于签名认证 -->
<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>
<!--staging puglin,用于自动执行发布阶段(免手动)-->
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<!-- release plugin,用于发布到release仓库部署插件 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.4.2</version>
</plugin>
</plugins>
</build>
<!-- 这里引入 Settings.xml 中设置的用户名、密码 -->
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<name>snapshot</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<name>staging</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
</distributionManagement>
</profile>
</profiles>
</project>