Add more modules

This commit is contained in:
Paul Schaub 2019-11-03 20:33:36 +01:00
parent da9179b049
commit b23fd0daf0
Signed by: vanitasvitae
GPG Key ID: 62BEE9264BF17311
5 changed files with 12 additions and 5 deletions

View File

@ -8,7 +8,7 @@ sourceSets {
dependencies {
implementation project(":core")
// implementation project(":core")
implementation project(":entity_xmpp")
// JXMPP for Jid types. Version comes from smacks version.gradle

View File

@ -2,6 +2,7 @@ include ':entity',
':entity_xmpp',
':repository',
':repository_xmpp',
':transport_xmpp',
':app',
':thread_utils',
':core'

View File

@ -1,8 +1,4 @@
apply plugin: 'java-library'
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
}
sourceCompatibility = "8"
targetCompatibility = "8"

1
transport_xmpp/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/build

View File

@ -0,0 +1,9 @@
apply plugin: 'java-library'
dependencies {
implementation project(":repository_xmpp")
implementation project(":entity_xmpp")
}
sourceCompatibility = "8"
targetCompatibility = "8"