sqlite
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.snowdream.android.database</groupId> <artifactId>sqlite</artifactId> <version>1.0</version> </dependency>
<?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> <groupId>com.github.snowdream.android.database</groupId> <artifactId>sqlite</artifactId> <version>1.0</version> <name>sqlite</name> <description>android-database</description> <url>https://github.com/snowdream/android-database</url> <inceptionYear>2014</inceptionYear> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>A business-friendly OSS license</comments> </license> </licenses> <developers> <developer> <id>snowdream</id> <name>YangHui</name> <email>yanghui1986527@gmail.com</email> <url>http://snowdream.github.io</url> </developer> </developers> <issueManagement> <system>Github</system> <url>https://github.com/snowdream/android-database/issues</url> </issueManagement> <scm> <connection>scm:git:git@github.com:snowdream/android-database.git</connection> <developerConnection>scm:git:git@github.com:snowdream/android-database.git</developerConnection> <url>git@github.com:snowdream/android-database.git</url> </scm> <dependencies> <dependency> <groupId>de.greenrobot</groupId> <artifactId>greendao-generator</artifactId> <version>1.3.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.j256.ormlite</groupId> <artifactId>ormlite-android</artifactId> <version>4.48</version> <scope>compile</scope> </dependency> <dependency> <groupId>de.greenrobot</groupId> <artifactId>greendao</artifactId> <version>1.3.7</version> <scope>compile</scope> </dependency> </dependencies> </project>