Skip to content

Commit

Permalink
transfer cobarclient1.0.4 from svn to github repo
Browse files Browse the repository at this point in the history
  • Loading branch information
fujohnwang committed Jul 15, 2013
1 parent 8bfb5c7 commit 4c94bf5
Show file tree
Hide file tree
Showing 506 changed files with 35,499 additions and 1 deletion.
14 changes: 14 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,15 @@
lib_managed/
project/target/*
project/project/target/*
project/build/target/*
project/boot/*
project/plugins/lib_managed/*
project/plugins/project/*
project/plugins/target/*
project/plugins/src_managed/*
target/
.idea/
.idea_modules/
*.iml
.DS_Store
out/
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,11 @@
cobarclient-
cobarclient
============


`mvn install` will package everything for you, including the documentations, the libraries, etc.

A quick-start can be found at <http://code.alibabatech.com/wiki/display/CobarClient/Home>

you can start with cobar-client by reading the docuemntation bundled with the distribution, the documentation is very elaborate.

GL & HF with cobar-client!
267 changes: 267 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,267 @@
<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">
<modelVersion>4.0.0</modelVersion>

<groupId>com.alibaba.cobar</groupId>
<artifactId>cobar-client</artifactId>
<packaging>jar</packaging>
<version>1.0.4</version>
<name>cobar-client</name>
<url>http://maven.apache.org</url>

<properties>
<java_source_version>1.5</java_source_version>
<java_target_version>1.5</java_target_version>
<file_encoding>UTF-8</file_encoding>
</properties>


<build>
<plugins>
<!-- Java Compiler -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${java_source_version}</source>
<target>${java_target_version}</target>
<encoding>${file_encoding}</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<charset>${file_encoding}</charset>
<encoding>${file_encoding}</encoding>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2-beta-5</version>
<configuration>
<descriptors>
<descriptor>${basedir}/src/main/assembly/dist.xml</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<id>make assembly</id>
<phase>package</phase>
<goals>
<goal>assembly</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.agilejava.docbkx</groupId>
<artifactId>docbkx-maven-plugin</artifactId>
<dependencies>
<dependency>
<groupId>org.docbook</groupId>
<artifactId>docbook-xml</artifactId>
<version>4.4</version>
<scope>runtime</scope>
</dependency>
</dependencies>
<executions>
<execution>
<id>generate-doc</id>
<phase>package</phase>
<goals>
<goal>generate-html</goal>
</goals>
<configuration>
<postProcess>
<copy todir="${basedir}/target/docs/">
<fileset dir="${basedir}/src/docs/docbook" includes="**/images/**/*" />
<fileset dir="${basedir}/src/docs/docbook" includes="**/css/**/*" />
</copy>
</postProcess>
</configuration>
</execution>
</executions>
<configuration>
<sourceDirectory>${basedir}/src/docs/docbook</sourceDirectory>
<targetDirectory>${basedir}/target/docs</targetDirectory>
<includes>**/*.dbx,**/*.xml</includes>
<chunkedOutput>false</chunkedOutput>
<xincludeSupported>true</xincludeSupported>
<highlightSource>1</highlightSource>
<htmlStylesheet>css/cc.css</htmlStylesheet>
<generateToc>appendix toc,title
article/appendix nop
article
toc,title
book toc,title,figure,table,example,equation
chapter toc
toc,title
part toc,title
preface toc,title
qandadiv toc
qandaset toc
reference toc,title
sect1 toc
sect2 toc
sect3 toc
sect4 toc
sect5 toc
section toc
set toc,title</generateToc>
<generateSectionTocLevel>8</generateSectionTocLevel>
<chapterAutolabel>true</chapterAutolabel>
<sectionAutolabel>true</sectionAutolabel>
<sectionAutolabelMaxDepth>8</sectionAutolabelMaxDepth>
<sectionLabelIncludesComponentLabel>true</sectionLabelIncludesComponentLabel>
<tableFootnoteNumberFormat>1</tableFootnoteNumberFormat>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.5</version>
<configuration>
<testNGArtifactName>org.testng:testng</testNGArtifactName>
<suiteXmlFiles>
<suiteXmlFile>${basedir}/src/test/resources/testng.xml</suiteXmlFile>
<suiteXmlFile>${basedir}/src/test/resources/testng-sequencial-tests.xml</suiteXmlFile>
</suiteXmlFiles>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.3</version>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>**/*</include>
</includes>
</resource>
</resources>
<testResources>
<testResource>
<directory>src/test/java</directory>
<includes>
<include>**/*</include>
</includes>
</testResource>
<testResource>
<directory>src/test/resources</directory>
<includes>
<include>**/*</include>
</includes>
</testResource>
</testResources>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<configuration>
<formats>
<format>html</format>
<format>xml</format>
</formats>
</configuration>
</plugin>
</plugins>
</reporting>

<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring</artifactId>
<version>2.5.6.SEC02</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.5.10</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jcl</artifactId>
<version>1.5.10</version>
</dependency>
<dependency>
<groupId>org.apache.ibatis</groupId>
<artifactId>ibatis-sqlmap</artifactId>
<version>2.3.4.726</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.4</version>
</dependency>
<dependency>
<groupId>org.mvel</groupId>
<artifactId>mvel2</artifactId>
<version>2.0.16</version>
</dependency>
<dependency>
<groupId>c3p0</groupId>
<artifactId>c3p0</artifactId>
<version>0.9.1.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.2.130</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.15</version>
<exclusions>
<exclusion>
<groupId>com.sun.jdmk</groupId>
<artifactId>jmxtools</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.jmx</groupId>
<artifactId>jmxri</artifactId>
</exclusion>
<exclusion>
<artifactId>jms</artifactId>
<groupId>javax.jms</groupId>
</exclusion>
<exclusion>
<artifactId>mail</artifactId>
<groupId>javax.mail</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.thoughtworks.xstream</groupId>
<artifactId>xstream</artifactId>
<version>1.3.1</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>1.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>5.11</version>
<scope>test</scope>
<classifier>jdk15</classifier>
</dependency>
</dependencies>
</project>
5 changes: 5 additions & 0 deletions src/.svn/all-wcprops
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
K 25
svn:wc:ra_dav:version-url
V 51
/svn/cobarclient/!svn/ver/13/trunk/cobar-client/src
END
37 changes: 37 additions & 0 deletions src/.svn/entries
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
10

dir
14
http://code.alibabatech.com/svn/cobarclient/trunk/cobar-client/src
http://code.alibabatech.com/svn/cobarclient



2013-03-28T05:38:00.993404Z
13
fujohnwang














c6c7eae3-5b7b-416b-8f42-c94d641c1759

test
dir

main
dir

docs
dir

5 changes: 5 additions & 0 deletions src/docs/.svn/all-wcprops
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
K 25
svn:wc:ra_dav:version-url
V 55
/svn/cobarclient/!svn/ver/8/trunk/cobar-client/src/docs
END
31 changes: 31 additions & 0 deletions src/docs/.svn/entries
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
10

dir
14
http://code.alibabatech.com/svn/cobarclient/trunk/cobar-client/src/docs
http://code.alibabatech.com/svn/cobarclient



2011-02-23T03:06:07.720121Z
8
fujohnwang














c6c7eae3-5b7b-416b-8f42-c94d641c1759

docbook
dir

5 changes: 5 additions & 0 deletions src/docs/docbook/.svn/all-wcprops
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
K 25
svn:wc:ra_dav:version-url
V 63
/svn/cobarclient/!svn/ver/8/trunk/cobar-client/src/docs/docbook
END
Loading

0 comments on commit 4c94bf5

Please sign in to comment.