mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-11 13:48:55 +00:00
397ab49ef3
Co-authored-by: Michael Kriese <michael.kriese@gmx.de>
30 lines
939 B
TypeScript
30 lines
939 B
TypeScript
import type { Category } from '../../../constants';
|
|
import { MavenDatasource } from '../../datasource/maven';
|
|
import * as gradleVersioning from '../../versioning/gradle';
|
|
|
|
export { extractAllPackageFiles } from './extract';
|
|
export { updateDependency } from './update';
|
|
export { updateArtifacts } from './artifacts';
|
|
|
|
export const supportsLockFileMaintenance = true;
|
|
|
|
export const url =
|
|
'https://docs.gradle.org/current/userguide/getting_started_dep_man.html';
|
|
export const categories: Category[] = ['java'];
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: [
|
|
'\\.gradle(\\.kts)?$',
|
|
'(^|/)gradle\\.properties$',
|
|
'(^|/)gradle/.+\\.toml$',
|
|
'(^|/)buildSrc/.+\\.kt$',
|
|
'\\.versions\\.toml$',
|
|
// The two below is for gradle-consistent-versions plugin
|
|
`(^|/)versions.props$`,
|
|
`(^|/)versions.lock$`,
|
|
],
|
|
timeout: 600,
|
|
versioning: gradleVersioning.id,
|
|
};
|
|
|
|
export const supportedDatasources = [MavenDatasource.id];
|