preprocessor
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.memtrip.sqlking</groupId>
<artifactId>preprocessor</artifactId>
<version>1.0.4</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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.memtrip.sqlking</groupId>
<artifactId>preprocessor</artifactId>
<version>1.0.4</version>
<name>SQLKing preprocessor</name>
<description>
SQLKing is an Android SQLite ORM powered an annotation preprocessor, tables are defined
by Model classes and CRUD classes expose an expressive api for SQLite executing queries.
</description>
<url>https://github.com/memtrip/SQLKing</url>
<developers>
<developer>
<name>Samuel Kirton</name>
<email>sam@memtrip.com</email>
<organization>memtrip</organization>
<organizationUrl>http://www.memtrip.com</organizationUrl>
</developer>
</developers>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<dependencies>
<dependency>
<groupId>com.google.auto.service</groupId>
<artifactId>auto-service</artifactId>
<version>1.0-rc2</version>
</dependency>
<dependency>
<groupId>org.freemarker</groupId>
<artifactId>freemarker</artifactId>
<version>2.3.23</version>
</dependency>
<dependency>
<groupId>com.google.android</groupId>
<artifactId>android</artifactId>
<version>2.3.3</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.memtrip.sqlking</groupId>
<artifactId>common</artifactId>
<version>1.0.4</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>Bintray</id>
<url>https://api.bintray.com/maven/memtrip/maven/sqlking-preprocessor/;publish=1</url>
</repository>
</distributionManagement>
<scm>
<connection>scm:git:git@github.com:memtrip/SQLKing.git</connection>
<developerConnection>scm:git:git@github.com:memtrip/SQLKing.git</developerConnection>
<url>git@github.com:memtrip/SQLKing.git</url>
</scm>
</project>