Skip to content

Commit

Permalink
removing autoservice
Browse files Browse the repository at this point in the history
  • Loading branch information
caelcs committed May 31, 2019
1 parent bfece29 commit 1faa275
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
4 changes: 1 addition & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,8 @@ dependencies {
implementation "com.datastax.cassandra:cassandra-driver-mapping:3.7.1"
implementation "com.datastax.cassandra:cassandra-driver-core:3.7.1"
implementation "com.squareup:javapoet:1.11.1"
implementation "com.google.auto.service:auto-service:1.0-rc5"
implementation "org.apache.commons:commons-text:1.6"


testImplementation "org.junit.jupiter:junit-jupiter-api:5.4.1"
testImplementation "org.junit.jupiter:junit-jupiter-params:5.4.1"
testImplementation "org.assertj:assertj-core:3.12.2"
Expand Down Expand Up @@ -156,7 +154,7 @@ publishing {

signing {
sign publishing.publications.mavenJava
required = { gradle.taskGraph.hasTask("uploadArchives") && !version.endsWith("SNAPSHOT") }
required = { gradle.taskGraph.hasTask("publish") && !version.endsWith("SNAPSHOT") }
}

wrapper {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package uk.co.caeldev.cassitory;

import com.google.auto.service.AutoService;
import com.google.common.collect.Lists;
import com.squareup.javapoet.JavaFile;
import uk.co.caeldev.cassitory.generators.CreatorGenerator;
Expand All @@ -20,7 +19,6 @@

@SupportedAnnotationTypes("uk.co.caeldev.cassitory.CassitoryEntity")
@SupportedSourceVersion(SourceVersion.RELEASE_8)
@AutoService(Processor.class)
public class CassitoryEntityProcessor extends AbstractProcessor {

private Filer filer;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
uk.co.caeldev.cassitory.CassitoryEntityProcessor

0 comments on commit 1faa275

Please sign in to comment.