jmind-redis
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.oschina.jmind</groupId> <artifactId>jmind-redis</artifactId> <version>2.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/maven-v4_0_0.xsd"> <parent> <groupId>net.oschina.jmind</groupId> <artifactId>jmind-parent-pom</artifactId> <version>2.0.0</version> </parent> <!-- compile 默认的scope,表示 dependency 都可以在生命周期中使用。而且,这些dependencies 会传递到依赖的项目中。适用于所有阶段,会随着项目一起发布 provided 跟compile相似,但是表明了dependency 由JDK或者容器提供,例如Servlet AP和一些Java EE APIs。这个scope 只能作用在编译和测试时,同时没有传递性。???????? runtime 表示dependency不作用在编译时,但会作用在运行和测试时,如JDBC驱动,适用运行和测试阶段。 test 表示dependency作用在测试时,不作用在运行时。 只在测试时使用,用于编译和运行测试代码。不会随项目发布。 system 跟provided 相似,但是在系统中要以外部JAR包的形式提供,maven不会在repository查找它。 --> <modelVersion>4.0.0</modelVersion> <artifactId>jmind-redis</artifactId> <name>jmind-redis</name> <packaging>jar</packaging> <dependencies> <dependency> <groupId>org.jboss.netty</groupId> <artifactId>netty</artifactId> </dependency> <dependency> <groupId>net.oschina.jmind</groupId> <artifactId>jmind-base</artifactId> </dependency> </dependencies> </project>