mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
Code which adds transitive dependencies for tests is modified to include only those dependencies which aren't already available. This change reduces the size of module-descriptors.jar from 4.2Mb to 2.2Mb for the intellij ultimate project. GitOrigin-RevId: f1ac6cd72b082afac5a8d3100c8664dbbe80fbe0
13 lines
549 B
Kotlin
13 lines
549 B
Kotlin
// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
|
|
package com.intellij.devkit.runtimeModuleRepository.jps.build
|
|
|
|
object RuntimeModuleRepositoryBuildConstants {
|
|
const val JAR_REPOSITORY_FILE_NAME: String = "module-descriptors.jar"
|
|
const val GENERATOR_VERSION: Int = 2
|
|
|
|
/**
|
|
* Must be equal to the [org.jetbrains.idea.devkit.build.IntelliJModuleRepositoryBuildScopeProvider.TARGET_TYPE_ID]
|
|
*/
|
|
const val TARGET_TYPE_ID: String = "intellij-runtime-module-repository"
|
|
}
|