dbapi
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.gitee.freakchicken.dbapi</groupId> <artifactId>dbapi</artifactId> <version>4.0.16</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://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.gitee.freakchicken.dbapi</groupId> <artifactId>dbapi</artifactId> <version>4.0.16</version> <packaging>pom</packaging> <name>DBApi</name> <description>build http api from sql without other code</description> <url>https://gitee.com/freakchicken/db-api</url> <licenses> <license> <name>GNU AFFERO GENERAL PUBLIC LICENSE, Version 3</name> <url>https://www.gnu.org/licenses/agpl-3.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>freakchicken</name> <email>jiangqiang110@126.com</email> <url>https://gitee.com/freakchicken/db-api</url> </developer> </developers> <scm> <connection>scm:git:https://gitee.com/freakchicken/db-api.git</connection> <developerConnection>scm:git:https://gitee.com/freakchicken/db-api.git</developerConnection> <url>https://gitee.com/freakchicken/db-api.git</url> </scm> <distributionManagement> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <properties> <docker.image.prefix>freakchicken</docker.image.prefix> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <revision>4.0.16</revision> <maven.compiler.encoding>UTF-8</maven.compiler.encoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>8</maven.compiler.source> <maven.compiler.target>8</maven.compiler.target> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>2.3.2.RELEASE</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.apache.tomcat.embed</groupId> <artifactId>tomcat-embed-core</artifactId> <version>9.0.98</version> </dependency> <dependency> <groupId>org.apache.tomcat.embed</groupId> <artifactId>tomcat-embed-el</artifactId> <version>9.0.98</version> </dependency> <dependency> <groupId>org.apache.tomcat.embed</groupId> <artifactId>tomcat-embed-websocket</artifactId> <version>9.0.98</version> </dependency> <dependency> <groupId>org.apache.tomcat</groupId> <artifactId>tomcat-annotations-api</artifactId> <version>9.0.98</version> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-dependencies</artifactId> <version>Hoxton.SR9</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>com.alibaba.cloud</groupId> <artifactId>spring-cloud-alibaba-dependencies</artifactId> <version>2.2.6.RELEASE</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>com.gitee.freakchicken.dbapi</groupId> <artifactId>dbapi-common</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.gitee.freakchicken.dbapi</groupId> <artifactId>dbapi-plugin</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.gitee.freakchicken.dbapi</groupId> <artifactId>dbapi-service</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.gitee.freakchicken.dbapi</groupId> <artifactId>dbapi-controller</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.gitee.freakchicken.dbapi</groupId> <artifactId>dbapi-standalone</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.gitee.freakchicken.dbapi</groupId> <artifactId>dbapi-cluster-gateway</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.gitee.freakchicken.dbapi</groupId> <artifactId>dbapi-cluster-manager</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.gitee.freakchicken.dbapi</groupId> <artifactId>dbapi-cluster-apiServer</artifactId> <version>${project.version}</version> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.8</source> <target>1.8</target> <encoding>utf-8</encoding> </configuration> </plugin> <plugin> <artifactId>maven-clean-plugin</artifactId> <version>3.1.0</version> <configuration> <failOnError>true</failOnError> <filesets> <fileset> <directory>${basedir}/dist</directory> <includes> <include>**/*</include> </includes> </fileset> </filesets> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>2.7</version> <configuration> <generateBackupPoms>false</generateBackupPoms> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>flatten-maven-plugin</artifactId> <version>1.2.5</version> <executions> <execution> <id>flatten</id> <phase>process-resources</phase> <goals> <goal>flatten</goal> </goals> </execution> <execution> <id>flatten.clean</id> <phase>clean</phase> <goals> <goal>clean</goal> </goals> </execution> </executions> <configuration> <flattenedPomFilename>pom-xml-flattened</flattenedPomFilename> <updatePomFile>true</updatePomFile> <flattenMode>resolveCiFriendliesOnly</flattenMode> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <activation> <activeByDefault>true</activeByDefault> </activation> <modules> <module>dbapi-ui</module> <module>dbapi-tool</module> <module>dbapi-common</module> <module>dbapi-plugin</module> <module>dbapi-service</module> <module>dbapi-controller</module> <module>dbapi-standalone</module> <module>dbapi-cluster-apiServer</module> <module>dbapi-cluster-manager</module> <module>dbapi-cluster-gateway</module> <module>dbapi-assembly</module> </modules> </profile> <profile> <id>deploy</id> <build> <plugins> <plugin> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.2.0</version> <executions> <execution> <id>attach-javadocs</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <doclint>none</doclint> </configuration> </execution> </executions> <configuration> <show>package</show> <tags> <tag> <name>date</name> </tag> </tags> </configuration> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.0</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <modules> <module>dbapi-common</module> <module>dbapi-plugin</module> </modules> </profile> </profiles> </project>