I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit e662f098 authored by str4d's avatar str4d
Browse files

Gradle: Create jbigi configuration

parent ad5301ae
No related branches found
No related tags found
No related merge requests found
configurations {
jbigi
}
sourceSets { sourceSets {
main { main {
java { java {
srcDir 'java/src' srcDir 'java/src'
} }
} }
jbigi {
resources {
srcDir 'lib/jbigi'
include '*.so'
include '*.dll'
include '*.jnilib'
}
}
} }
dependencies { dependencies {
...@@ -20,3 +32,12 @@ jar { ...@@ -20,3 +32,12 @@ jar {
attributes 'Main-Class': 'net.i2p.installer.Main' attributes 'Main-Class': 'net.i2p.installer.Main'
} }
} }
task jbigiJar(type: Jar) {
baseName = 'jbigi'
from sourceSets.jbigi.output
}
artifacts {
jbigi jbigiJar
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment