Skip to content

Commit

Permalink
cachecloud开源
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosfu committed Jan 27, 2016
1 parent 67dbce6 commit eeead03
Show file tree
Hide file tree
Showing 1,002 changed files with 200,825 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
.idea/
*.iml
.svn/*
target/
*.class
.settings
.classpath
.project
55 changes: 55 additions & 0 deletions cachecloud-open-client/cachecloud-jedis/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
<?xml version="1.0" encoding="UTF-8"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://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>
<parent>
<groupId>com.sohu.tv</groupId>
<artifactId>cachecloud-open-client</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<groupId>com.sohu.tv</groupId>
<artifactId>cachecloud-jedis</artifactId>
<version>1.0-SNAPSHOT</version>
<name>cachecloud-jedis</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<type>jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-pool2</artifactId>
<version>2.3</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.dyuproject.protostuff</groupId>
<artifactId>protostuff-runtime</artifactId>
<version>1.0.8</version>
</dependency>

<dependency>
<groupId>com.dyuproject.protostuff</groupId>
<artifactId>protostuff-core</artifactId>
<version>1.0.8</version>
</dependency>

<dependency>
<groupId>com.sohu.tv</groupId>
<artifactId>cachecloud-open-client-basic</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>

</dependencies>

</project>
Loading

0 comments on commit eeead03

Please sign in to comment.