mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-14 16:46:25 +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
14 lines
439 B
TypeScript
14 lines
439 B
TypeScript
import type { Category } from '../../../constants';
|
|
import { ClojureDatasource } from '../../datasource/clojure';
|
|
import * as mavenVersioning from '../../versioning/maven';
|
|
|
|
export { extractPackageFile } from './extract';
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: ['(^|/)project\\.clj$'],
|
|
versioning: mavenVersioning.id,
|
|
};
|
|
|
|
export const categories: Category[] = ['java'];
|
|
|
|
export const supportedDatasources = [ClojureDatasource.id];
|