Skip to content

Commit

Permalink
clean dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
pierfrancescogulinelli committed May 7, 2021
1 parent 2c6e7fb commit e00ab84
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 2 additions & 2 deletions annotations/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ apply plugin: 'kotlin'
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])

implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
implementation group: 'javax.inject', name: 'javax.inject', version: '1'
implementation libraries.stdlib_j8
implementation libraries.javax_inject
}

sourceCompatibility = "7"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,5 @@ import kotlin.reflect.KClass

@Target(AnnotationTarget.ANNOTATION_CLASS, AnnotationTarget.CLASS)
annotation class ConductorEntryPoint(
/**
* The base class for the generated Hilt class. When applying the Hilt Gradle Plugin this value
* is not necessary and will be inferred from the current superclass.
*/
val value: KClass<*> = Void::class
)

0 comments on commit e00ab84

Please sign in to comment.