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>
16 lines
541 B
TypeScript
16 lines
541 B
TypeScript
import type { Category } from '../../../constants';
|
|
import { MavenDatasource } from '../../datasource/maven';
|
|
import { id as versioning } from '../../versioning/maven';
|
|
|
|
export { extractPackageFile } from './extract';
|
|
export { updateArtifacts } from './artifacts';
|
|
|
|
export const url = 'https://maven.apache.org/wrapper';
|
|
export const categories: Category[] = ['java'];
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: ['(^|\\/).mvn/wrapper/maven-wrapper.properties$'],
|
|
versioning,
|
|
};
|
|
|
|
export const supportedDatasources = [MavenDatasource.id];
|