nuuneoi / JCenter

Apache License 2.0
59 stars 146 forks source link

How to upload my annotation processor? #10

Open Xiaofei-it opened 8 years ago

Xiaofei-it commented 8 years ago

Hi, I have developed a library (See HERE), which consists of two sub-libraries. One is comparator-generator and the other one is comparator-generator-annotation-processor.

I have uploaded comparator-generator to bintray, by following your instruction.

Also, I have uploaded the annotation processor in the same way. But I cannot download it to process the annotations. Could you please tell me how to upload the annotation processor in a correct way?

Thank you in advance for your help.

By the way, my aim is to let a user download my library in the following way:

apply plugin: 'android-apt'

android {
    ...
}

buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
    }
}

dependencies {
    apt project(':comparator-generator-annotation-processor')
    compile project (':comparator-generator')
}
GaurangShaha commented 6 years ago

@Xiaofei-it Did you figure out any solution for it?