- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getModelEncoding (0.07 sec)
-
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/LifecycleConfiguration.java
} // -- java.util.List<Lifecycle> getLifecycles() /** * Get the modelEncoding field. * * @return String */ public String getModelEncoding() { return this.modelEncoding; } // -- String getModelEncoding() /** * Method removeLifecycle. * * @param lifecycle a lifecycle object. */ public void removeLifecycle(Lifecycle lifecycle) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.8K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/io/DefaultModelWriter.java
Objects.requireNonNull(output, "output cannot be null"); Objects.requireNonNull(model, "model cannot be null"); String encoding = model.getModelEncoding(); if (encoding == null || encoding.isEmpty()) { encoding = "UTF-8"; } try (Writer out = new OutputStreamWriter(output, encoding)) { write(out, options, model);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.4K bytes - Viewed (0)