Skip to content

Commit

Permalink
Configure dependencies to be transitive
Browse files Browse the repository at this point in the history
  • Loading branch information
desyncr committed Apr 21, 2021
1 parent f3fc913 commit 98791c3
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group = 'org.freenetproject.mobile'
version = '0.1'
version = '0.2'

task sourcesJar(type: Jar) {
from sourceSets.main.allJava
Expand Down Expand Up @@ -39,26 +39,26 @@ repositories {

dependencies {
// Freenet dependencies
implementation ('com.github.freenet-mobile:fred:1490.2m') {
api('com.github.freenet-mobile:fred:1490.2m') {
exclude group: 'net.java.dev.jna', module: 'jna'
exclude group: 'net.java.dev.jna', module: 'jna-platform'
}
implementation 'net.java.dev.jna:jna:4.5.2@aar'
api 'net.java.dev.jna:jna:4.5.2@aar'

implementation 'org.bouncycastle:bcpkix-jdk15on:1.59'
implementation "org.bouncycastle:bcprov-jdk15on:1.59"
api 'org.bouncycastle:bcpkix-jdk15on:1.59'
api "org.bouncycastle:bcprov-jdk15on:1.59"

implementation "tanukisoft:wrapper:3.2.3"
implementation "org.apache.commons:commons-compress:1.4.1"
implementation "org.b1.pack:lzma-sdk-4j:9.22.0"
api "tanukisoft:wrapper:3.2.3"
api "org.apache.commons:commons-compress:1.4.1"
api "org.b1.pack:lzma-sdk-4j:9.22.0"

implementation 'com.github.Bombe:jFCPlib:v0.1.6'
api 'com.github.Bombe:jFCPlib:v0.1.6'

implementation 'com.github.freenet-mobile:mantissa:0.0.3'
implementation "com.github.freenet-mobile:lzmajio:0.95.4"
implementation 'com.github.freenet-mobile:onion-common:0.0.3'
implementation 'com.github.freenet-mobile:onion-fec:0.0.4'
implementation 'com.github.freenet-mobile:freenet-ext:0.60.3'
api 'com.github.freenet-mobile:mantissa:0.0.3'
api "com.github.freenet-mobile:lzmajio:0.95.4"
api 'com.github.freenet-mobile:onion-common:0.0.3'
api 'com.github.freenet-mobile:onion-fec:0.0.4'
api 'com.github.freenet-mobile:freenet-ext:0.60.3'
// End Freenet dependencies

// Android compatible logging
Expand Down

0 comments on commit 98791c3

Please sign in to comment.