- Sort Score
- Result 10 results
- Languages All
Results 251 - 260 of 541 for myplugins (0.05 sec)
-
docs/fr/README.md
2. Importez le dépôt cloné en tant que projet [Maven](https://maven.apache.org/) sur [Eclipse](https://www.eclipse.org/eclipseide/) ou un autre IDE. ### Configuration pour les Plugins OpenSearch Exécutez antrun:run pour télécharger les plugins dans le répertoire plugins : $ mvn antrun:run ### Exécuter Fess Exécutez ou déboguez org.codelibs.fess.FessBoot dans votre IDE, puis accédez à http://localhost:8080/
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Tue Nov 11 22:42:32 UTC 2025 - 7.9K bytes - Viewed (0) -
docs/pt-BR/README.md
2. Importe o repositório clonado como um projeto [Maven](https://maven.apache.org/) no [Eclipse](https://www.eclipse.org/eclipseide/) ou em outro IDE. ### Configuração de Plugins para OpenSearch Execute antrun:run para baixar os plugins no diretório de plugins: $ mvn antrun:run ### Executar o Fess Execute ou depure `org.codelibs.fess.FessBoot` no seu IDE, e depois acesse http://localhost:8080/
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Tue Nov 11 22:42:32 UTC 2025 - 7.6K bytes - Viewed (0) -
compat/maven-embedder/src/test/java/org/apache/maven/cli/event/ExecutionEventLoggerTest.java
ExecutionEvent event = mock(ExecutionEvent.class); MavenProject project = mock(MavenProject.class); when(project.getGroupId()).thenReturn("org.apache.maven.plugins.overflow"); when(project.getArtifactId()).thenReturn("maven-project-info-reports-plugin"); when(project.getPackaging()).thenReturn("maven-plugin");
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun Dec 01 19:41:22 UTC 2024 - 12.3K bytes - Viewed (0) -
compat/maven-model/pom.xml
</dependency> <dependency> <groupId>org.openjdk.jmh</groupId> <artifactId>jmh-core</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.modello</groupId> <artifactId>modello-maven-plugin</artifactId> <configuration> <basedir>${project.basedir}/../../api/maven-api-model</basedir>Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 7.1K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/settings/SettingsUtilsTest.java
class SettingsUtilsTest { @Test void testShouldAppendRecessivePluginGroupIds() { Settings dominant = Settings.newBuilder() .pluginGroups(Arrays.asList("org.apache.maven.plugins", "org.codehaus.modello")) .build(); Settings recessive = Settings.newBuilder() .pluginGroups(Arrays.asList("org.codehaus.plexus")) .build();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 24 17:29:44 UTC 2025 - 6.7K bytes - Viewed (0) -
.github/workflows/maven.yml
ref: ${{ env.PARENT_BRANCH }} path: fess-parent - name: Install fess-parent run: | cd fess-parent mvn install -Dgpg.skip=true - 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.shRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sun Nov 23 06:47:15 UTC 2025 - 1.4K bytes - Viewed (0) -
module-tests/build.gradle.kts
plugins { id("java") id("application") id("com.github.iherasymenko.jlink") version "0.7" id("org.gradlex.extra-java-module-info") version "1.13.1" } dependencies { implementation(projects.okhttp) implementation(projects.loggingInterceptor) testImplementation(projects.okhttp) testImplementation(projects.loggingInterceptor) testImplementation(projects.mockwebserver3) testImplementation(projects.mockwebserver3Junit5)Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sun Sep 21 06:45:42 UTC 2025 - 1.6K bytes - Viewed (0) -
regression-test/build.gradle.kts
plugins { id("com.android.library") kotlin("android") } android { compileSdk = 35 namespace = "okhttp.android.regression" defaultConfig { minSdk = 21 targetSdk = 34 // Make sure to use the AndroidJUnitRunner (or a sub-class) in order to hook in the JUnit 5 Test Builder testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunnerArguments += mapOf(Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Mon Mar 17 15:11:24 UTC 2025 - 1.6K bytes - Viewed (0) -
impl/maven-core/src/main/resources/META-INF/maven/extension.xml
| provoke linkage errors for wagons contributed by build extensions. We also don't need to exclude the wagons | from plugins. Plugins that use wagons directly and declare the corresponding dependency will simply use a | wagon from their plugin realm. --> </exportedArtifacts> </extension>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Mar 24 14:07:06 UTC 2025 - 12.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/PluginLifecycle.java
@Override public String name() { return phase.getId(); } @Override public List<Plugin> plugins() { return Collections.singletonList(Plugin.newBuilder() .groupId(pluginDescriptor.getGroupId()) .artifactId(pluginDescriptor.getArtifactId())Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.6K bytes - Viewed (0)