Sex-JDBC
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.isliqian</groupId> <artifactId>Sex-JDBC</artifactId> <version>1.0.0</version> </dependency>
<?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>io.github.isliqian</groupId> <artifactId>Sex-JDBC</artifactId> <url>https://github.com/isliqian/NiceEmail</url> <version>1.0.0</version> <packaging>jar</packaging> <name>Sex-JDBC</name> <!-- FIXME change it to the project's website --> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>LqNice</name> <email>51103942@qq.com</email> <organization>imqian</organization> <organizationUrl>http://www.imqian.top</organizationUrl> </developer> </developers> <!-- 保持和申请的issues里面填写的scm一致 --> <scm> <connection> scm:git:https://github.com/JavaWebExamples/sex-jdbc.git </connection> <developerConnection> scm:git:https://github.com/JavaWebExamples/sex-jdbc.git </developerConnection> <url>git@github.com:JavaWebExamples/sex-jdbc.git</url> <tag>1.0.0</tag> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.7</maven.compiler.source> <maven.compiler.target>1.7</maven.compiler.target> </properties> <dependencies> <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java --> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.41</version> </dependency> </dependencies> <repositories> <repository> <id>oss-snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <build> <plugins> <!-- Compile --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.6</source> <target>1.6</target> <encoding>UTF-8</encoding> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <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.9.1</version> <!-- -Xdoclint:none 是为了生存apidoc的时候检查不必太严格--> <configuration> <additionalparam>-Xdoclint:none</additionalparam> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- GPG 打包插件--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url> https://oss.sonatype.org/content/repositories/snapshots/ </url> </snapshotRepository> <!-- 发布到 发行版本的仓库中,也可以发布到3rd party 仓库 --> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/releases/</url> </repository> </distributionManagement> </profile> </profiles> </project>