- Sort Score
- Result 10 results
- Languages All
Results 281 - 290 of 572 for Plugin2 (0.04 sec)
-
docs/es/README.md
2. Importa el repositorio clonado como un proyecto [Maven](https://maven.apache.org/) en [Eclipse](https://www.eclipse.org/eclipseide/) u otro IDE. ### ConfiguraciĆ³n de Plugins para OpenSearch Ejecuta antrun:run para descargar los plugins en el directorio de plugins: $ mvn antrun:run ### Ejecutar Fess Ejecuta o depura `org.codelibs.fess.FessBoot` en tu IDE, y luego accede a http://localhost:8080/
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 07:19:47 UTC 2024 - 7.6K bytes - Viewed (0) -
.github/workflows/maven.yml
- uses: actions/cache@v4 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} restore-keys: | ${{ runner.os }}-maven- - name: Download Plugins with Maven run: mvn -B antrun:run --file pom.xml - name: Build with Maven run: mvn -B source:jar javadoc:jar package --file pom.xml - name: Run Fess run: bash src/test/resources/before_script.sh
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Feb 10 11:19:11 UTC 2024 - 1.1K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java
this.logger.error( String.format("Invalid version specification '%s' creating plugin artifact '%s'.", version, plugin), e); return null; } return artifactFactory.createPluginArtifact(plugin.getGroupId(), plugin.getArtifactId(), versionRange); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 31.6K bytes - Viewed (0) -
requirements-docs.txt
pillow==11.0.0 # For image processing by Material for MkDocs cairosvg==2.7.1 mkdocstrings[python]==0.26.1 griffe-typingdoc==0.2.7 # For griffe, it formats with black black==24.3.0 mkdocs-macros-plugin==1.0.5
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Nov 01 11:17:22 UTC 2024 - 499 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java
"WEB-INF" + File.separator + "env" + File.separator + getExecuteType() + File.separator + "lib" + File.separator); // WEB-INF/plugin appendJarFile(cpSeparator, buf, new File(servletContext.getRealPath("/WEB-INF/plugin")), "WEB-INF" + File.separator + "plugin" + File.separator); final File targetLibDir = new File(targetDir, "fess" + File.separator + "WEB-INF" + File.separator + "lib");
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 10.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/SuggestJob.java
"WEB-INF" + File.separator + "env" + File.separator + getExecuteType() + File.separator + "lib" + File.separator); // WEB-INF/plugin appendJarFile(cpSeparator, buf, new File(servletContext.getRealPath("/WEB-INF/plugin")), "WEB-INF" + File.separator + "plugin" + File.separator); final File targetLibDir = new File(targetDir, "fess" + File.separator + "WEB-INF" + File.separator + "lib");
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sun Jun 23 04:13:47 UTC 2024 - 10K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/bridge/MavenRepositorySystem.java
return createParentArtifactX(groupId, artifactId, version); } // DefaultProjectBuilder public Artifact createPluginArtifact(Plugin plugin) { VersionRange versionRange; try { String version = plugin.getVersion(); if (version == null || version.isEmpty()) { version = "RELEASE"; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 32.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/storage/TagForm.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.admin.storage; import java.util.HashMap; import java.util.Map; import org.apache.logging.log4j.core.config.plugins.validation.constraints.Required; import jakarta.validation.constraints.Size; public class TagForm { @Required public String path; @Required @Size(max = 100) public String name;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1K bytes - Viewed (0) -
native-image-tests/build.gradle.kts
import org.apache.tools.ant.taskdefs.condition.Os plugins { id("com.palantir.graal") kotlin("jvm") } dependencies { implementation(libs.junit.jupiter.api) implementation(libs.junit.jupiter.engine) implementation(libs.junit.platform.console) implementation(libs.squareup.okio.fakefilesystem) implementation(projects.okhttp) implementation(projects.okhttpBrotli) implementation(projects.okhttpDnsoverhttps)
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Jan 06 05:31:00 UTC 2024 - 1.6K bytes - Viewed (0) -
okcurl/build.gradle.kts
import com.vanniktech.maven.publish.JavadocJar import com.vanniktech.maven.publish.KotlinJvm import org.apache.tools.ant.taskdefs.condition.Os plugins { kotlin("jvm") id("org.jetbrains.dokka") id("com.vanniktech.maven.publish.base") id("com.palantir.graal") id("com.github.johnrengelman.shadow") } val copyResourcesTemplates = tasks.register<Copy>("copyResourcesTemplates") { from("src/main/resources-templates")
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Dec 20 23:27:07 UTC 2023 - 1.8K bytes - Viewed (0)