u4fdb
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.gitee.l0km</groupId> <artifactId>u4fdb</artifactId> <version>1.0.0</version> </dependency>
<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> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <groupId>com.gitee.l0km</groupId> <artifactId>u4fdb</artifactId> <version>1.0.0</version> <packaging>pom</packaging> <name>utilities for facedb</name> <url>https://gitee.com/l0km</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <common-java.version>1.2.2</common-java.version> <facedb.version>2.3.1</facedb.version> <derby.version>10.13.1.1</derby.version> <mtfsdk.version>1.3.2</mtfsdk.version> <sql2java.version>2.3.1</sql2java.version> <!-- surefire 插件 跳过测试 --> <skipTests>true</skipTests> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> </dependencies> </dependencyManagement> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9</version> <configuration> <detectLinks>false</detectLinks> <detectOfflineLinks>true</detectOfflineLinks> <linksource>true</linksource> <detectJavaApiLink>false</detectJavaApiLink> </configuration> </plugin> </plugins> </pluginManagement> </build> <modules> <module>u4fdb-apps</module> <module>u4fdb-db</module> </modules> <licenses> <license> <name>The 2-Clause BSD License</name> <url>https://gitee.com/l0km/u4fdb/tree/master/LICENSE</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>guyadong</name> <email>10km0811@sohu.com</email> <url>https://gitee.com/l0km</url> </developer> </developers> <scm> <connection>scm:git:https://gitee.com/l0km/u4fdb.git</connection> <developerConnection>scm:git:https://gitee.com/l0km/u4fdb.git</developerConnection> <url>https://gitee.com/l0km/u4fdb</url> </scm> <profiles> <profile> <id>doclint-java8-disable</id> <!-- 指定profile只在JDK版本大于等于1.8时有效 --> <activation> <jdk>[1.8,)</jdk> <!-- <activeByDefault>false</activeByDefault> --> </activation> <build> <pluginManagement> <plugins> <!--引入javadoc插件 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9</version> <configuration> <!-- 禁用java 8 的DocLint新特性,以确保当javadoc有编译错误时,也能正常生成javadoc jar包 --> <additionalparam>-Xdoclint:none</additionalparam> </configuration> </plugin> </plugins> </pluginManagement> </build> </profile> </profiles> </project>