Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
QuasselDroid-ng
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Janne Mareike Koschinski
QuasselDroid-ng
Merge requests
!3
Improve GRADLE build Performance
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Closed
Improve GRADLE build Performance
ChenZhangg-Modify_GRADLE_1
into
main
Overview
0
Commits
1
Pipelines
0
Changes
1
Closed
Improve GRADLE build Performance
Janne Mareike Koschinski
requested to merge
ChenZhangg-Modify_GRADLE_1
into
main
Oct 26, 2021
Overview
0
Commits
1
Pipelines
0
Changes
1
https://github.com/justjanne/QuasselDroid-ng/pull/14
0
0
Merge request reports
Compare
main
version 1
547abf69
Oct 26, 2021
main (base)
and
latest version
latest version
547abf69
1 commit,
Mar 4, 2022
version 1
547abf69
1 commit,
Oct 26, 2021
1 file
+
18
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
build.gradle
+
18
−
0
View file @ 547abf69
Edit in single-file editor
Open in Web IDE
Show full file
@@ -16,4 +16,22 @@
* You should have received a copy of the GNU General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
allprojects
{
tasks
.
withType
(
Test
).
configureEach
{
maxParallelForks
=
4
}
tasks
.
withType
(
Test
).
configureEach
{
forkEvery
=
100
}
tasks
.
withType
(
Test
).
configureEach
{
reports
.
html
.
required
=
false
reports
.
junitXml
.
required
=
false
}
tasks
.
withType
(
JavaCompile
).
configureEach
{
options
.
incremental
=
true
}
}
Loading