velox-sql
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.maxwellnie</groupId> <artifactId>velox-sql</artifactId> <version>1.2.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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> <packaging>pom</packaging> <url>https://github.com/maxwellnie/velox-sql.git</url> <modules> <module>velox-sql-core</module> <module>velox-sql-spring</module> <module>velox-sql-spring-boot-starter</module> </modules> <description>Java-based ORM Framework</description> <groupId>io.github.maxwellnie</groupId> <artifactId>velox-sql</artifactId> <version>1.2.2</version> <properties> <maven.compiler.source>8</maven.compiler.source> <maven.compiler.target>8</maven.compiler.target> <maven.compiler.source>8</maven.compiler.source> <maven.compiler.target>8</maven.compiler.target> <!--项目编码--> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <!--插件版本--> <maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version> <maven-release-plugin.version>3.0.0-M1</maven-release-plugin.version> <maven-source-plugin.version>3.2.1</maven-source-plugin.version> <maven-javadoc-plugin.version>3.5.0</maven-javadoc-plugin.version> <nexus-staging-maven-plugin.version>1.6.8</nexus-staging-maven-plugin.version> <maven-gpg-plugin.version>1.6</maven-gpg-plugin.version> </properties> <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> <developers> <developer> <name>maxwellnie</name> <email>maxwellnie@qq.com</email> </developer> </developers> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.6.1</version> <scope>provided</scope> </dependency> </dependencies> <scm> <connection>scm:git@github.com:maxwellnie/velox-sql.git</connection> <developerConnection>scm:git@github.com:maxwellnie/velox-sql.git</developerConnection> <url>git@github.com:maxwellnie/velox-sql.git</url> </scm> <build> <plugins> <!-- Source --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <id>attach-sources</id> <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>${maven-javadoc-plugin.version}</version> <configuration> <show>package</show> <tags> <tag> <name>date</name> </tag> </tags> </configuration> <executions> <execution> <id>attach-javadocs</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <doclint>none</doclint> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> <executions> <execution> <!-- id 与 setting.xml 的 gpg 配置中的 id 对应--> <id>ossrh</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.4.0</version> <extensions>true</extensions> <configuration> <publishingServerId>ossrh</publishingServerId> <tokenAuth>true</tokenAuth> <deploymentName>velox-sql</deploymentName> </configuration> </plugin> </plugins> </build> </project>