Skip to content

Commit

Permalink
Rename placeholdeview-processor to placeholderview-compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
janishar committed Feb 28, 2018
1 parent 735cbc9 commit feb9a58
Show file tree
Hide file tree
Showing 21 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,5 @@ dependencies {
implementation project(":placeholderview")
implementation 'com.android.support:recyclerview-v7:27.0.2'
testImplementation 'junit:junit:4.12'
annotationProcessor project(':placeholderview-processor')
annotationProcessor project(':placeholderview-compiler')
}
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ install {
pom.project {
packaging 'jar'

name 'placeholderview-processor'
name 'placeholderview-compiler'
description 'Annotation Processor for PlaceHolderView'

url siteUrl
Expand Down Expand Up @@ -68,7 +68,7 @@ if (project.rootProject.file("local.properties").exists()) {

pkg {
repo = "mindorks"
name = "placeholderview-processor"
name = "placeholderview-compiler"
websiteUrl = siteUrl
vcsUrl = gitUrl
licenses = ["Apache-2.0"]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.mindorks.placeholderview.processor;
package com.mindorks.placeholderview.compiler;

import com.squareup.javapoet.ClassName;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.mindorks.placeholderview.processor;
package com.mindorks.placeholderview.compiler;

import com.squareup.javapoet.TypeSpec;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.mindorks.placeholderview.processor;
package com.mindorks.placeholderview.compiler;

import com.mindorks.placeholderview.annotations.Layout;
import com.mindorks.placeholderview.annotations.NonReusable;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.mindorks.placeholderview.processor;
package com.mindorks.placeholderview.compiler;

import com.mindorks.placeholderview.annotations.Layout;
import com.mindorks.placeholderview.annotations.expand.ChildPosition;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.mindorks.placeholderview.processor;
package com.mindorks.placeholderview.compiler;

import com.squareup.javapoet.JavaFile;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.mindorks.placeholderview.processor;
package com.mindorks.placeholderview.compiler;

import java.io.IOException;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.mindorks.placeholderview.processor;
package com.mindorks.placeholderview.compiler;

/**
* Created by janisharali on 25/02/18.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.mindorks.placeholderview.processor;
package com.mindorks.placeholderview.compiler;

import com.mindorks.placeholderview.annotations.internal.BindingSuffix;
import com.mindorks.placeholderview.annotations.swipe.SwipeInDirectional;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.mindorks.placeholderview.processor;
package com.mindorks.placeholderview.compiler;

import com.mindorks.placeholderview.annotations.Layout;
import com.mindorks.placeholderview.annotations.swipe.SwipeInDirectional;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.mindorks.placeholderview.processor;
package com.mindorks.placeholderview.compiler;

import com.mindorks.placeholderview.annotations.internal.BindingSuffix;
import com.mindorks.placeholderview.annotations.swipe.SwipeCancelState;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.mindorks.placeholderview.processor;
package com.mindorks.placeholderview.compiler;

import com.mindorks.placeholderview.annotations.Layout;
import com.mindorks.placeholderview.annotations.swipe.SwipeCancelState;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.mindorks.placeholderview.processor;
package com.mindorks.placeholderview.compiler;

import com.mindorks.placeholderview.annotations.Click;
import com.mindorks.placeholderview.annotations.Layout;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.mindorks.placeholderview.processor;
package com.mindorks.placeholderview.compiler;

import com.mindorks.placeholderview.annotations.Click;
import com.mindorks.placeholderview.annotations.Layout;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.mindorks.placeholderview.processor;
package com.mindorks.placeholderview.compiler;

import com.mindorks.placeholderview.annotations.Click;
import com.mindorks.placeholderview.annotations.Layout;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
com.mindorks.placeholderview.compiler.ViewBinderProcessor
com.mindorks.placeholderview.compiler.ExpandableViewBinderProcessor
com.mindorks.placeholderview.compiler.SwipeViewBinderProcessor
com.mindorks.placeholderview.compiler.SwipeDirectionalViewBinderProcessor

This file was deleted.

2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1 +1 @@
include ':app', ':placeholderview', ':placeholderview-annotations', ':placeholderview-processor'
include ':app', ':placeholderview', ':placeholderview-annotations', ':placeholderview-compiler'

0 comments on commit feb9a58

Please sign in to comment.