Ellie Compiler

Compile-time active record ORM for Android.

License

License

GroupId

GroupId

com.nhaarman.ellie
ArtifactId

ArtifactId

compiler
Last Version

Last Version

0.0.4
Release Date

Release Date

Type

Type

jar
Description

Description

Ellie Compiler
Compile-time active record ORM for Android.
Project URL

Project URL

https://github.com/nhaarman/ellie
Source Code Management

Source Code Management

https://github.com/nhaarman/ellie

Download compiler

How to add to project

<!-- https://jarcasting.com/artifacts/com.nhaarman.ellie/compiler/ -->
<dependency>
    <groupId>com.nhaarman.ellie</groupId>
    <artifactId>compiler</artifactId>
    <version>0.0.4</version>
</dependency>
// https://jarcasting.com/artifacts/com.nhaarman.ellie/compiler/
implementation 'com.nhaarman.ellie:compiler:0.0.4'
// https://jarcasting.com/artifacts/com.nhaarman.ellie/compiler/
implementation ("com.nhaarman.ellie:compiler:0.0.4")
'com.nhaarman.ellie:compiler:jar:0.0.4'
<dependency org="com.nhaarman.ellie" name="compiler" rev="0.0.4">
  <artifact name="compiler" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.nhaarman.ellie', module='compiler', version='0.0.4')
)
libraryDependencies += "com.nhaarman.ellie" % "compiler" % "0.0.4"
[com.nhaarman.ellie/compiler "0.0.4"]

Dependencies

compile (3)

Group / Artifact Type Version
com.google.guava : guava jar 18.0
com.nhaarman.ellie : core jar 0.0.4
com.squareup : javawriter jar 2.5.0

test (2)

Group / Artifact Type Version
com.google.testing.compile : compile-testing jar 0.6
junit : junit jar 4.10

Project Modules

There are no modules declared in this project.

Ellie Build Status Maven Central ![Gitter](https://badges.gitter.im/Join Chat.svg)

![In Progress](https://badge.waffle.io/nhaarman/ellie.svg?label=in-progress&title=In Progress) ![Ready for Release](https://badge.waffle.io/nhaarman/ellie.svg?label=next-release&title=Ready for Release)

Compile-time active record ORM for Android.

Ellie is a heavily modified fork from Ollie, with a few important modifications:

  • Calls to the main Ellie class are not static;
  • Moved database logic out of Model classes into ModelRepository classes;

Download

Grab via Maven:

<dependency>
  <groupId>com.nhaarman.ellie</groupId>
  <artifactId>core</artifactId>
  <version>x.x.x</version>
</dependency>
<dependency>
  <groupId>com.nhaarman.ellie</groupId>
  <artifactId>compiler</artifactId>
  <version>x.x.x</version>
  <optional>true</optional>
</dependency>

or Gradle:

compile 'com.nhaarman.ellie:core:x.x.x'
provided 'com.nhaarman.ellie:compiler:x.x.x'

Build

To build:

$ git clone git@github.com:nhaarman/ellie.git
$ cd ellie/
$ ./gradlew build

Debugging:

Add the following to ~/.gradle/gradle.properties, and run ./gradlew daemon.

org.gradle.daemon=true
org.gradle.jvmargs=-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005

Next, in IntelliJ, add a Remote Run Configuration and start debugging. When building the project (gradlew build), the debugger will halt at breakpoints in the annotation processor.

License

Copyright 2014 Michael Pardo
Copyright 2014 Niek Haarman

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Versions

Version
0.0.4
0.0.3
0.0.2
0.0.1