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>
31 lines
988 B
TypeScript
31 lines
988 B
TypeScript
import type { Category } from '../../../constants';
|
|
import { GithubReleasesDatasource } from '../../datasource/github-releases';
|
|
import { MavenDatasource } from '../../datasource/maven';
|
|
import { SbtPackageDatasource } from '../../datasource/sbt-package';
|
|
import { SbtPluginDatasource } from '../../datasource/sbt-plugin';
|
|
import * as ivyVersioning from '../../versioning/ivy';
|
|
|
|
export { extractAllPackageFiles, extractPackageFile } from './extract';
|
|
export { bumpPackageVersion } from './update';
|
|
|
|
export const displayName = 'sbt';
|
|
export const url = 'https://www.scala-sbt.org';
|
|
export const categories: Category[] = ['java'];
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: [
|
|
'\\.sbt$',
|
|
'project/[^/]*\\.scala$',
|
|
'project/build\\.properties$',
|
|
'(^|/)repositories$',
|
|
],
|
|
versioning: ivyVersioning.id,
|
|
};
|
|
|
|
export const supportedDatasources = [
|
|
MavenDatasource.id,
|
|
SbtPackageDatasource.id,
|
|
SbtPluginDatasource.id,
|
|
GithubReleasesDatasource.id, // For sbt itself
|
|
];
|