Files
openide/plugins/devkit/runtimeModuleRepository/jps/src/build/RuntimeModuleRepositoryBuildConstants.kt
Nikolay Chashnikov 162cf5ec55 [runtime module repository] include descriptors for test parts of modules to runtime module repository (IDEA-345102)
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
2024-02-07 20:12:25 +00:00

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"
}