Paoding-rose(庖丁肉丝) is an open source framework, which introduces the best way to develop your web applications and RDMS applications.
Paoding-rose has been a main development framework of renren.com(人人网), xiaomi.com(小米科技).
And we also receive reports that paoding-rose has been chosen in some applicaitons for qunar.com(去哪儿), focus.cn(焦点房产).
(more report is welcome)
**Add dependencies to pom.xml in your maven project . **
The artifacts have been released to oss.sonatype.org and synced to maven central repository
<dependency>
<groupId>net.paoding</groupId>
<artifactId>paoding-rose-jade</artifactId>
<version>2.0.u01</version>
</dependency>
<dependency>
<groupId>net.paoding</groupId>
<artifactId>paoding-rose-web</artifactId>
<version>2.0.u01</version>
</dependency>
TIPs: 2.0.uxx means the xxth update of 2.0.
If you always want your project using the lastest version, check <version>2.0.uxx</version>
to value 2.0-SNAPSHOT as following:
1) add snapshot repository to your pom.xml:
// under project element
<repositories>
<repository>
<id>ossrh-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
- checkout the the SNAPSHOT version:
<dependency>
<groupId>net.paoding</groupId>
<artifactId>paoding-rose-jade</artifactId>
<version>2.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>net.paoding</groupId>
<artifactId>paoding-rose-web</artifactId>
<version>2.0-SNAPSHOT</version>
</dependency>