mirror of
https://github.com/MinimalBible/jsword-minimalbible
synced 2024-11-22 07:58:20 -05:00
Support building the library to reference external
This commit is contained in:
parent
2b091f4a2b
commit
7e0eaee201
15
build.gradle
Normal file
15
build.gradle
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
configurations {
|
||||||
|
buildJSword
|
||||||
|
}
|
||||||
|
|
||||||
|
task doBuildJSword (type: GradleBuild) {
|
||||||
|
buildFile = 'jsword-stub.gradle'
|
||||||
|
tasks = ['clean', 'ivy.check', 'ivy.download', 'ivy.task', 'ivy',
|
||||||
|
'init', 'mergeCode', 'compile', 'jar'] //, 'copyJarsToMinimalBible']
|
||||||
|
|
||||||
|
ext.outputJar = file('distribution/jsword.jar')
|
||||||
|
}
|
||||||
|
|
||||||
|
artifacts {
|
||||||
|
buildJSword doBuildJSword.ext.outputJar
|
||||||
|
}
|
20
jsword-minimalbible.iml
Normal file
20
jsword-minimalbible.iml
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<module external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$/.." external.system.id="GRADLE" external.system.module.group="MinimalBible" external.system.module.version="unspecified" type="JAVA_MODULE" version="4">
|
||||||
|
<component name="FacetManager">
|
||||||
|
<facet type="android-gradle" name="Android-Gradle">
|
||||||
|
<configuration>
|
||||||
|
<option name="GRADLE_PROJECT_PATH" value=":jsword-minimalbible" />
|
||||||
|
</configuration>
|
||||||
|
</facet>
|
||||||
|
</component>
|
||||||
|
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
||||||
|
<exclude-output />
|
||||||
|
<content url="file://$MODULE_DIR$">
|
||||||
|
<excludeFolder url="file://$MODULE_DIR$/.gradle" />
|
||||||
|
<excludeFolder url="file://$MODULE_DIR$/build" />
|
||||||
|
</content>
|
||||||
|
<orderEntry type="inheritedJdk" />
|
||||||
|
<orderEntry type="sourceFolder" forTests="false" />
|
||||||
|
</component>
|
||||||
|
</module>
|
||||||
|
|
1
jsword-stub.gradle
Normal file
1
jsword-stub.gradle
Normal file
@ -0,0 +1 @@
|
|||||||
|
ant.importBuild('../jsword-minimalbible/build.xml')
|
Loading…
Reference in New Issue
Block a user