- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 116 for mvn (0.01 sec)
-
README.md
```bash # Build all modules mvn clean install # Build without tests mvn clean install -DskipTests # Build specific module mvn clean install -pl fess-crawler # Generate test coverage report mvn jacoco:report ``` ### Code Quality ```bash # Format code mvn formatter:format # Update license headers mvn license:format # Run static analysis
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Aug 31 05:32:52 UTC 2025 - 15.3K bytes - Viewed (0) -
CLAUDE.md
**UrlConvertHelper**: URL normalization --- ## Development Workflow ### Build Commands ```bash mvn clean install # Build all mvn clean install -DskipTests # Skip tests mvn test # Run tests mvn formatter:format # Format code mvn license:format # Update license headers ``` ### Code Style - 4 spaces (no tabs)
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Fri Nov 28 17:31:34 UTC 2025 - 10.7K bytes - Viewed (0) -
api/maven-api-cli/src/site/apt/index.apt
----- Maven 4 API - CLI This is the {{{./apidocs/org/apache/maven/api/cli/package-summary.html}API}} for Maven's command-line interface and tools: * <<<{{{./apidocs/org/apache/maven/api/cli/mvn/package-summary.html}mvn}}>>>, the Maven build tool, * <<<{{{./apidocs/org/apache/maven/api/cli/mvnenc/package-summary.html}mvnenc}}>>>, the Maven Password Encryption tool,Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun Nov 16 18:16:44 UTC 2025 - 1.6K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnsh/builtin/BuiltinShellCommandRegistryFactory.java
import org.apache.maven.api.services.LifecycleRegistry; import org.apache.maven.api.services.LookupException; import org.apache.maven.cling.invoker.LookupContext; import org.apache.maven.cling.invoker.mvn.MavenInvoker; import org.apache.maven.cling.invoker.mvn.MavenParser; import org.apache.maven.cling.invoker.mvnenc.EncryptInvoker; import org.apache.maven.cling.invoker.mvnenc.EncryptParser; import org.apache.maven.cling.invoker.mvnenc.Goal;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Jun 07 06:22:47 UTC 2025 - 12.3K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/resident/ResidentMavenInvoker.java
* under the License. */ package org.apache.maven.cling.invoker.mvn.resident; import java.util.ArrayList; import java.util.concurrent.ConcurrentHashMap; import java.util.function.Consumer; import org.apache.maven.api.annotations.Nullable; import org.apache.maven.api.cli.InvokerException; import org.apache.maven.api.cli.InvokerRequest; import org.apache.maven.api.cli.mvn.MavenOptions; import org.apache.maven.api.services.Lookup;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Sep 11 17:20:46 UTC 2025 - 4.1K bytes - Viewed (0) -
CLAUDE.md
## Development Workflow ### Build Commands ```bash mvn compile # Compile mvn test # Run all tests mvn test -Dtest=SuggesterTest # Run specific test mvn package # Package JAR mvn formatter:format license:format # Format code and apply licenses mvn clean jacoco:prepare-agent test jacoco:report # Generate coverage report ```
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 8.9K bytes - Viewed (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvn/MavenInvokerTest.java
* KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.maven.cling.invoker.mvn; import java.nio.file.FileSystem; import java.nio.file.Files; import java.nio.file.Path; import java.util.List; import java.util.Map; import com.google.common.jimfs.Configuration;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Oct 21 12:17:55 UTC 2025 - 9.3K bytes - Viewed (0) -
docs/es/README.md
$ mvn dbflute:download # (comando ejecutado una sola vez) $ mvn dbflute:freegen $ mvn license:format ### Pruebas de Integración Inicia el servidor Fess y ejecuta el siguiente comando: $ mvn test -P integrationTests -Dtest.fess.url="http://localhost:8080" -Dtest.search_engine.url="http://localhost:9201" Para ejecutar un único caso de prueba, puedes usar:Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Tue Nov 11 22:42:32 UTC 2025 - 7.8K bytes - Viewed (0) -
compat/maven-embedder/src/site/apt/index.apt.vm
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.8K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/MavenCling.java
import org.apache.maven.api.cli.Parser; import org.apache.maven.api.cli.ParserRequest; import org.apache.maven.cling.invoker.ProtoLookup; import org.apache.maven.cling.invoker.mvn.MavenInvoker; import org.apache.maven.cling.invoker.mvn.MavenParser; import org.codehaus.plexus.classworlds.ClassWorld; /** * Maven CLI "new-gen". */ public class MavenCling extends ClingSupport { /**
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jun 11 13:14:09 UTC 2025 - 3K bytes - Viewed (0)