Skip to content

Commit

Permalink
Made changes to publish the 'proof-of-concept' pre-release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
DESKTOP-FE3E8CL-JeeFo committed Dec 22, 2018
1 parent 360c3f6 commit e0628b5
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 11 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ buildscript {
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.0'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down
4 changes: 2 additions & 2 deletions daggersharpener-processor/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apply plugin: 'java-library'
apply plugin: 'com.github.dcendents.android-maven'
apply plugin: 'com.jfrog.bintray'

def processorLibraryVersion = "0.0.1"
def processorLibraryVersion = "0.1.0"

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
Expand All @@ -28,7 +28,7 @@ ext {
publishedGroupId = 'com.github.alexdochioiu' // your module package name
libraryName = 'daggersharpener-processor'
artifact = 'daggersharpener-processor' // has to be same as your library module name
libraryDescription = 'Annotation processor for interface injection'
libraryDescription = 'Annotation processor for dependency injection'
siteUrl = 'https://github.com/AlexDochioiu/DaggerSharpener'
issuesUrl = 'https://github.com/AlexDochioiu/DaggerSharpener/issues'
gitUrl = 'https://github.com/AlexDochioiu/DaggerSharpener.git'
Expand Down
4 changes: 2 additions & 2 deletions daggersharpener/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'java-library'
apply plugin: 'com.github.dcendents.android-maven'
apply plugin: 'com.jfrog.bintray'

def annotatorLibraryVersion = "0.0.1"
def annotatorLibraryVersion = "0.1.0"

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
Expand All @@ -17,7 +17,7 @@ ext {
publishedGroupId = 'com.github.alexdochioiu' // your module package name
libraryName = 'daggersharpener'
artifact = 'daggersharpener' // has to be same as your library module name
libraryDescription = 'Annotation library for interface injection'
libraryDescription = 'Annotation library for dependency injection'
siteUrl = 'https://github.com/AlexDochioiu/DaggerSharpener'
issuesUrl = 'https://github.com/AlexDochioiu/DaggerSharpener/issues'
gitUrl = 'https://github.com/AlexDochioiu/DaggerSharpener.git'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@

import java.lang.reflect.Type;

/**
* Created by Alexandru Iustin Dochioiu on 21-Dec-18
*/
public class DateTimeConvertor implements JsonSerializer<DateTime>, JsonDeserializer<DateTime>
{
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@
import retrofit2.http.GET;
import retrofit2.http.Path;

/**
* Created by Alexandru Iustin Dochioiu on 21-Dec-18
*/
public interface GithubService {
@GET("users/{username}/repos")
Call<List<GithubRepo>> getReposForUser(@Path("username") String username);
Expand Down

0 comments on commit e0628b5

Please sign in to comment.