All Projects → PicPay → Version Checker Gradle Lint

PicPay / Version Checker Gradle Lint

Licence: mit
Warning on new versions available even when using Kotlin-DSL plugin.

Programming Languages

kotlin
9241 projects

Projects that are alternatives of or similar to Version Checker Gradle Lint

Gradle Code Quality Tools Plugin
Gradle plugin that generates ErrorProne, Findbugs, Checkstyle, PMD, CPD, Lint, Detekt & Ktlint Tasks for every subproject.
Stars: ✭ 282 (+314.71%)
Mutual labels:  gradle, lint
Jitpack.io
Documentation and issues of https://jitpack.io
Stars: ✭ 2,156 (+3070.59%)
Mutual labels:  gradle, libraries
Android Development Aircraft Carrier
打造安卓开发航空母舰,Android Studio 使用集锦
Stars: ✭ 138 (+102.94%)
Mutual labels:  gradle, lint
Gradle Lint Plugin
A pluggable and configurable linter tool for identifying and reporting on patterns of misuse or deprecations in Gradle scripts.
Stars: ✭ 473 (+595.59%)
Mutual labels:  gradle, lint
Fetch
The best file downloader library for Android
Stars: ✭ 1,124 (+1552.94%)
Mutual labels:  gradle
Business Search App Java
Showcases object oriented programming in Java, Java Swing, Kotlin, and Android
Stars: ✭ 53 (-22.06%)
Mutual labels:  gradle
Auto Manifest
Generates AndroidManifest.xml in simple libraries so that you don't have to
Stars: ✭ 51 (-25%)
Mutual labels:  gradle
Xormlite
一个方便实用的OrmLite数据库框架,支持一键集成。
Stars: ✭ 49 (-27.94%)
Mutual labels:  gradle
Microservices Example
Example of a microservices architecture on the modern stack of Java technologies
Stars: ✭ 66 (-2.94%)
Mutual labels:  gradle
Anomaly Detection
A machine learning plugin in Open Distro for Elasticsearch for real time anomaly detection on streaming data.
Stars: ✭ 65 (-4.41%)
Mutual labels:  gradle
Spongeforge
A Forge mod that implements SpongeAPI
Stars: ✭ 1,106 (+1526.47%)
Mutual labels:  gradle
Tabbychat 2
Successor to TabbyChat
Stars: ✭ 53 (-22.06%)
Mutual labels:  gradle
Qtools
QTools collection of open source tools for embedded systems development on Windows, Linux and MacOS
Stars: ✭ 64 (-5.88%)
Mutual labels:  lint
Meowcop
A RuboCop configuration focusing Lint. Recommended by Sider
Stars: ✭ 51 (-25%)
Mutual labels:  lint
Habito
Simple habit tracker app for Android
Stars: ✭ 65 (-4.41%)
Mutual labels:  gradle
Turkishid
Validator/generator for Turkish Republic Citizen ID numbers (TC Kimlik No)
Stars: ✭ 49 (-27.94%)
Mutual labels:  libraries
Restfeel
RESTFeel: 一个企业级的API管理&测试平台。RESTFeel帮助你设计、开发、测试您的API。
Stars: ✭ 59 (-13.24%)
Mutual labels:  gradle
Simplebase
.NET library for encoding/decoding Base16, Base32, Base58 and Base85.
Stars: ✭ 64 (-5.88%)
Mutual labels:  libraries
S Mvp
🔥🔥优化版MVP,使用注解泛型简化代码编写,使用模块化协议方便维护,APT过程使用注解解析器利用JavaPoet🌝完成重复模块的编写,利用ASpect+GradlePlugin 完成横向AOP编程+Javassist动态字节码注入+Tinker实现热修复+Retrofit实现优雅网络操作+RxJava轻松玩转数据处理
Stars: ✭ 1,095 (+1510.29%)
Mutual labels:  gradle
Gradle S3 Build Cache
An AWS S3 Gradle build cache implementation
Stars: ✭ 54 (-20.59%)
Mutual labels:  gradle

Version Checker Gradle Lint

Warning on new versions available even when using Kotlin-DSL plugin.

This detector checks with a central repository to see if there are newer versions available for the dependencies used by your project. This is similar to the GradleDependency check, which checks for newer versions available. This works with any Google, MavenCentral, JCenter, or Jitpack dependency, and connects to the remote library if the reference does not exist in the local cache. The cache lifetime default is 60 minutes but can be modified in versionlint.properties into buildSrc module.

Install

Run script install.sh:

bash install.sh

Or copy manually version-checker.jar to $HOME/.android/lint/

Configuration: buildSrc/versionlint.properties:

Default values

versionlint.cache.time.minutes=60
versionlint.prerelease.enable=false
versionlint.versions.file=Versions
versionlint.dependencies.suffix=Libs
  • Cache

versionlint.cache.time.minutes=60

  • Versions file name:

versionlint.versions.file=Versions

  • Suffix for libraries declaration files:

versionlint.dependencies.suffix=Libs

You can create files with this suffix.

Examples: Libs, AndroidLibs, TestLibs, etc.

  • Enables find release candidates (alpha, beta, rc):

versionlint.prerelease.enable=false

Create your version file

object Versions {

    val kotlinVersion = "1.3.70"
   
    val junit4Version = "4.12"
}

Create libraries files

object Libs {

    val kotlin = "org.jetbrains.kotlin:kotlin-stdlib:${Versions.kotlinVersion}"
}
object TestLibs {

    val junit4 = "junit:junit:${Versions.junit4Version}"
}
object OtherLibs {

    val myLib = "mylib:mylib:${Versions.myLib}"
}

Enable/Disable lint with lintOptions (default: enabled)

lintOptions {
    enable "VersionCheckerGradleLint"
}

License

MIT License

Copyright (c) 2020 PicPay

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].