forked from bigbluebutton/bigbluebutton
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add settings.gradle for pres-checker project.
- Loading branch information
1 parent
7bf7adf
commit e30a37d
Showing
6 changed files
with
28 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
rootProject.name = 'bbb-video' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
rootProject.name = 'bbb-voice' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
rootProject.name = 'bigbluebutton-apps' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,39 @@ | ||
apply plugin: 'java' | ||
|
||
sourceCompatibility = 1.8 | ||
targetCompatibility = 1.8 | ||
sourceCompatibility = '1.8' | ||
targetCompatibility = '1.8' | ||
|
||
version = '0.0.1' | ||
version '0.0.1' | ||
jar.enabled = true | ||
archivesBaseName = 'bbb-pres-check' | ||
|
||
task resolveDeps(type: Copy) { | ||
into('lib') | ||
from configurations.default | ||
from configurations.default.allArtifacts.file | ||
into('lib') | ||
from configurations.default | ||
from configurations.default.allArtifacts.file | ||
doLast { println '[bbb:task] Resolved dependencies for pres-checker application' } | ||
} | ||
|
||
repositories { | ||
mavenCentral() | ||
mavenLocal() | ||
jcenter() | ||
mavenLocal() | ||
} | ||
|
||
dependencies { | ||
compile 'org.apache.poi:poi:4.0.0@jar' | ||
compile 'org.apache.poi:poi-ooxml:4.0.0@jar' | ||
compile 'org.apache.poi:poi-ooxml-schemas:4.0.0@jar' | ||
compile 'commons-io:commons-io:2.6@jar' | ||
compile 'org.apache.commons:commons-lang3:3.8.1@jar' | ||
compile 'org.apache.commons:commons-collections4:4.2@jar' | ||
compile 'org.apache.xmlbeans:xmlbeans:3.0.2@jar' | ||
compile 'org.apache.poi:poi:4.0.0@jar' | ||
compile 'org.apache.poi:poi-ooxml:4.0.0@jar' | ||
compile 'org.apache.poi:poi-ooxml-schemas:4.0.0@jar' | ||
compile 'commons-io:commons-io:2.6@jar' | ||
compile 'org.apache.commons:commons-lang3:3.8.1@jar' | ||
compile 'org.apache.commons:commons-collections4:4.2@jar' | ||
compile 'org.apache.xmlbeans:xmlbeans:3.0.2@jar' | ||
} | ||
|
||
jar { | ||
manifest.mainAttributes("Permissions": "all-permissions") | ||
manifest.mainAttributes("Codebase": "*") | ||
manifest.mainAttributes("Application-Name": "BigBlueButton Presentation Checker") | ||
manifest.mainAttributes("Application-Library-Allowable-Codebase": "*") | ||
manifest.mainAttributes("Caller-Allowable-Codebase": "*") | ||
manifest.mainAttributes("Trusted-Only": "true") | ||
manifest.mainAttributes("Permissions": "all-permissions") | ||
manifest.mainAttributes("Codebase": "*") | ||
manifest.mainAttributes("Application-Name": "BigBlueButton Presentation Checker") | ||
manifest.mainAttributes("Application-Library-Allowable-Codebase": "*") | ||
manifest.mainAttributes("Caller-Allowable-Codebase": "*") | ||
manifest.mainAttributes("Trusted-Only": "true") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
rootProject.name = "bbb-pres-check" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,5 +12,6 @@ | |
</error> | ||
</#items> | ||
</errors> | ||
</#list> | ||
</response> | ||
</#compress> |