@@ -26,8 +26,7 @@ const getBuilder = (cwd: string) => {
26
26
) ;
27
27
} ;
28
28
29
- export const DEFAULT_KTOR_INITIALIZR_URL =
30
- 'https://start-ktor-io.labs.jb.gg' ; //'https://start.ktor.io';
29
+ export const DEFAULT_KTOR_INITIALIZR_URL = 'https://start.ktor.io' ;
31
30
32
31
export interface KtorFeature {
33
32
name : string ;
@@ -42,7 +41,12 @@ export function runKtorPluginCommand(
42
41
ignoreWrapper ?: boolean ;
43
42
useLegacyWrapper ?: boolean ;
44
43
runFromParentModule ?: boolean ;
45
- } = { cwd : process . cwd ( ) , ignoreWrapper : false , useLegacyWrapper : true , runFromParentModule : false }
44
+ } = {
45
+ cwd : process . cwd ( ) ,
46
+ ignoreWrapper : false ,
47
+ useLegacyWrapper : true ,
48
+ runFromParentModule : false ,
49
+ }
46
50
) : { success : boolean } {
47
51
//force use legacy wrapper for all executors
48
52
options = { ...options , useLegacyWrapper : true } ;
@@ -72,7 +76,10 @@ export function buildKtorDownloadUrl(options: NormalizedSchema) {
72
76
}
73
77
74
78
export function isKtorProject ( project : ProjectConfiguration ) : boolean {
75
- if ( hasMultiModuleMavenProject ( project . root ) || hasMultiModuleGradleProject ( project . root ) )
79
+ if (
80
+ hasMultiModuleMavenProject ( project . root ) ||
81
+ hasMultiModuleGradleProject ( project . root )
82
+ )
76
83
return true ;
77
84
78
85
if ( isMavenProject ( project ) ) {
0 commit comments