16 references to WriteJarWithManifest
Aspire.Hosting.Java.Tests (16)
AddJavaAppTests.cs (16)
1507var runJar = WriteJarWithManifest(
1584var jarPath = WriteJarWithManifest(tempDir.Path, "api.jar", "com.example.catalog.CatalogApplication");
1604var jarPath = WriteJarWithManifest(tempDir.Path, "target/api.jar", "com.example.catalog.CatalogApplication");
1620WriteJarWithManifest(tempDir.Path, "api.jar", MainClass, wrapLongValue: true);
1634var jarPath = WriteJarWithManifest(tempDir.Path, "api.jar", "org.springframework.boot.loader.JarLauncher");
1650WriteJarWithManifest(tempDir.Path, "no-main.jar", mainClass: null);
1677WriteJarWithManifest(
1721WriteJarWithManifest(tempDir.Path, "build/libs/orders.jar", mainClass: null, startClass: "com.example.orders.OrdersApplication");
1724WriteJarWithManifest(tempDir.Path, "build/libs/orders-plain.jar", mainClass: null);
1725WriteJarWithManifest(tempDir.Path, "build/libs/orders-sources.jar", mainClass: null);
1726WriteJarWithManifest(tempDir.Path, "build/libs/orders-javadoc.jar", mainClass: null);
1742WriteJarWithManifest(tempDir.Path, "target/catalog-0.0.1-SNAPSHOT.jar", mainClass: null, startClass: "com.example.catalog.CatalogApplication");
1743WriteJarWithManifest(tempDir.Path, "target/catalog-0.0.1-SNAPSHOT-shaded.jar", mainClass: null, startClass: "com.example.catalog.Other");
1760WriteJarWithManifest(tempDir.Path, "target/catalog.jar", mainClass: "org.springframework.boot.loader.launch.JarLauncher");
1778WriteJarWithManifest(tempDir.Path, "target/catalog.jar", mainClass: null, startClass: "com.example.catalog.CatalogApplication");
1892WriteJarWithManifest(