IJPL-797 intellij.platform.jps.build.launcher review internal API

GitOrigin-RevId: 0db8021fd1a1d42c58108d17833bedda6f656a19
This commit is contained in:
Eugene Zhuravlev
2024-06-24 13:27:02 +02:00
committed by intellij-monorepo-bot
parent da176e1fb2
commit f2ff6d070b
4 changed files with 5 additions and 7 deletions

View File

@@ -1,3 +0,0 @@
f:org.jetbrains.jps.cmdline.Launcher
- <init>():V
- s:main(java.lang.String[]):V

View File

View File

@@ -23,5 +23,6 @@
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="jetbrains-annotations" level="project" />
</component>
</module>

View File

@@ -1,6 +1,8 @@
// Copyright 2000-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
// Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
package org.jetbrains.jps.cmdline;
import org.jetbrains.annotations.ApiStatus;
import java.io.File;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
@@ -12,9 +14,7 @@ import java.util.List;
import java.util.Random;
import java.util.StringTokenizer;
/**
* @author Eugene Zhuravlev
*/
@ApiStatus.Internal
public final class Launcher {
public static void main(String[] args) throws MalformedURLException, ClassNotFoundException, NoSuchMethodException, IllegalAccessException, InstantiationException, InvocationTargetException {
final String jpsClasspath = args[0];