Changeset 1ae9879
- Timestamp:
- Feb 17, 2019 1:16:20 AM (2 years ago)
- Branches:
- master
- Children:
- 56c1739d
- Parents:
- 51b27bb
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
build.gradle
r51b27bb r1ae9879 50 50 reports { 51 51 xml.enabled true 52 xml.destination "${buildDir}/reports/jacoco/report.xml"52 xml.destination file("${buildDir}/reports/jacoco/report.xml") 53 53 html.enabled true 54 html.destination "${buildDir}/reports/jacoco/html"54 html.destination file("${buildDir}/reports/jacoco/html") 55 55 } 56 56 } -
gradle/wrapper/gradle-wrapper.properties
r51b27bb r1ae9879 3 3 zipStoreBase=GRADLE_USER_HOME 4 4 zipStorePath=wrapper/dists 5 distributionUrl=https\://services.gradle.org/distributions/gradle- 4.3-bin.zip5 distributionUrl=https\://services.gradle.org/distributions/gradle-5.2.1-bin.zip -
gradlew
r51b27bb r1ae9879 4 4 ## 5 5 ## Gradle start up script for UN*X 6 ##7 ## Copyright 2017 the original author or authors.8 ##9 ## Licensed under the Apache License, Version 2.0 (the "License");10 ## you may not use this file except in compliance with the License.11 ## You may obtain a copy of the License at12 ##13 ## http://www.apache.org/licenses/LICENSE-2.014 ##15 ## Unless required by applicable law or agreed to in writing, software16 ## distributed under the License is distributed on an "AS IS" BASIS,17 ## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.18 ## See the License for the specific language governing permissions and19 ## limitations under the License.20 6 ## 21 7 ############################################################################## -
gradlew.bat
r51b27bb r1ae9879 3 3 @rem 4 4 @rem Gradle startup script for Windows 5 @rem6 @rem Copyright 2017 the original author or authors.7 @rem8 @rem Licensed under the Apache License, Version 2.0 (the "License");9 @rem you may not use this file except in compliance with the License.10 @rem You may obtain a copy of the License at11 @rem12 @rem http://www.apache.org/licenses/LICENSE-2.013 @rem14 @rem Unless required by applicable law or agreed to in writing, software15 @rem distributed under the License is distributed on an "AS IS" BASIS,16 @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.17 @rem See the License for the specific language governing permissions and18 @rem limitations under the License.19 5 @rem 20 6 @rem ##########################################################################
Note: See TracChangeset
for help on using the changeset viewer.