mirror of
https://github.com/renovatebot/renovate.git
synced 2024-12-22 13:38:32 +00:00
397ab49ef3
Co-authored-by: Michael Kriese <michael.kriese@gmx.de>
21 lines
641 B
TypeScript
21 lines
641 B
TypeScript
import type { Category } from '../../../constants';
|
|
import { MavenDatasource } from '../../datasource/maven';
|
|
import * as mavenVersioning from '../../versioning/maven';
|
|
|
|
export { extractAllPackageFiles } from './extract';
|
|
export { bumpPackageVersion, updateDependency } from './update';
|
|
|
|
export const url = 'https://maven.apache.org';
|
|
export const categories: Category[] = ['java'];
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: [
|
|
'(^|/|\\.)pom\\.xml$',
|
|
'^(((\\.mvn)|(\\.m2))/)?settings\\.xml$',
|
|
'(^|/)\\.mvn/extensions\\.xml$',
|
|
],
|
|
versioning: mavenVersioning.id,
|
|
};
|
|
|
|
export const supportedDatasources = [MavenDatasource.id];
|