Skip to content

Commit

Permalink
Using compile
Browse files Browse the repository at this point in the history
  • Loading branch information
daggerok committed Sep 6, 2018
1 parent 5bf325d commit c9695f7
Show file tree
Hide file tree
Showing 22 changed files with 11 additions and 5 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ compileJava {
}

dependencies {
implementation("org.reflections:reflections:$reflectionsVersion")
implementation("javax.inject:javax.inject:$injectVersion")
implementation("org.slf4j:slf4j-api:$slf4jVersion")
compile("org.reflections:reflections:$reflectionsVersion")
compile("javax.inject:javax.inject:$injectVersion")
compile("org.slf4j:slf4j-api:$slf4jVersion")

runtime("ch.qos.logback:logback-classic:$logbackVersion")
compileOnly("ch.qos.logback:logback-classic:$logbackVersion")
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
buildscript {
ext {
daggerokContextVersion = '1.0.3'
daggerokContextVersion = '1.0.4'
javaVersion = '1.8'
}
}
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 7 additions & 1 deletion samples/jitpack103/pom.xml → samples/jitpack104/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<daggerok.context.version>1.0.3</daggerok.context.version>
<daggerok.context.version>1.0.4</daggerok.context.version>
</properties>

<!-- JitPack 1: -->
Expand All @@ -31,6 +31,12 @@
<artifactId>daggerok-context</artifactId>
<version>${daggerok.context.version}</version>
</dependency>

<dependency>
<groupId>javax.inject</groupId>
<artifactId>javax.inject</artifactId>
<version>1</version>
</dependency>
</dependencies>

<build>
Expand Down
File renamed without changes.

0 comments on commit c9695f7

Please sign in to comment.