mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-15 00:56:26 +00:00
19259a0383
Closes #13953 Co-authored-by: Rhys Arkins <rhys@arkins.net> Co-authored-by: Michael Kriese <michael.kriese@visualon.de> Co-authored-by: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com> BREAKING CHANGE: languages are now called categories instead
12 lines
338 B
TypeScript
12 lines
338 B
TypeScript
import type { Category } from '../../../constants';
|
|
import { MavenDatasource } from '../../datasource/maven';
|
|
|
|
export { extractPackageFile } from './extract';
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: ['^.+\\.main\\.kts$'],
|
|
};
|
|
|
|
export const categories: Category[] = ['java'];
|
|
|
|
export const supportedDatasources = [MavenDatasource.id];
|