- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for installArtifact (0.27 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/plugin/AdminPluginAction.java
} public static void installArtifact(final Artifact artifact) { new Thread(() -> { final PluginHelper pluginHelper = ComponentUtil.getPluginHelper(); final Artifact[] artifacts = pluginHelper.getInstalledArtifacts(artifact.getType()); try { pluginHelper.installArtifact(artifact); } catch (final Exception e) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PluginHelper.java
} } return new Artifact(nameList.stream().collect(Collectors.joining("-")), versionList.stream().collect(Collectors.joining("-")), url); } public void installArtifact(final Artifact artifact) { switch (artifact.getType()) { case THEME: install(artifact); ComponentUtil.getThemeHelper().install(artifact); break;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 01:47:10 UTC 2024 - 17.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Session.java
* @throws org.apache.maven.api.services.ArtifactInstallerException if the artifacts installation failed * * @see org.apache.maven.api.services.ArtifactInstaller#install(Session, Collection) */ void installArtifacts(@Nonnull ProducedArtifact... artifacts); /** * Shortcut for {@code getService(ArtifactInstaller.class).install(...)}. * * @param artifacts the artifacts to install
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 16:43:07 UTC 2024 - 36.4K bytes - Viewed (0)