Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for XmlPullParserException (0.07 sec)

  1. compat/maven-settings/src/main/java/org/apache/maven/settings/io/xpp3/SettingsXpp3Reader.java

            try {
                return new Settings(delegate.read(reader, strict, null));
            } catch (XMLStreamException e) {
                throw new XmlPullParserException(e.getMessage(), null, e);
            }
        }
    
        public Settings read(Reader reader) throws IOException, XmlPullParserException {
            try {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Apr 05 11:52:05 UTC 2025
    - 4K bytes
    - Viewed (0)
  2. compat/maven-embedder/src/main/java/org/apache/maven/cli/internal/extension/model/io/xpp3/CoreExtensionsXpp3Reader.java

         * @throws XmlPullParserException XmlPullParserException if
         * any.
         * @return String
         */
        private String getRequiredAttributeValue(String s, String attribute, XmlPullParser parser, boolean strict)
                throws XmlPullParserException {
            if (s == null) {
                if (strict) {
                    throw new XmlPullParserException(
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Oct 27 13:24:03 UTC 2025
    - 25.3K bytes
    - Viewed (0)
  3. compat/maven-toolchain-model/src/main/java/org/apache/maven/toolchain/model/io/xpp3/MavenToolchainsXpp3Reader.java

         * @param strict a strict object.
         * @return PersistedToolchains
         * @throws IOException IOException if any.
         * @throws XmlPullParserException XmlPullParserException if
         *         any.
         */
        public PersistedToolchains read(XmlPullParser parser, boolean strict) throws IOException, XmlPullParserException {
            throw new UnsupportedOperationException("Not yet implemented");
        }
    
        /**
         * @param reader a reader object.
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat May 31 10:30:45 UTC 2025
    - 5K bytes
    - Viewed (0)
  4. compat/maven-compat/src/main/java/org/apache/maven/settings/DefaultMavenSettingsBuilder.java

        public Settings buildSettings() throws IOException, XmlPullParserException {
            File userSettingsFile = getFile(
                    "${user.home}/.m2/settings.xml", "user.home", MavenSettingsBuilder.ALT_USER_SETTINGS_XML_LOCATION);
    
            return buildSettings(userSettingsFile);
        }
    
        @Override
        public Settings buildSettings(boolean useCachedSettings) throws IOException, XmlPullParserException {
            return buildSettings();
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  5. compat/maven-model-builder/src/main/java/org/apache/maven/model/io/DefaultModelReader.java

    import org.apache.maven.model.io.xpp3.MavenXpp3ReaderEx;
    import org.codehaus.plexus.util.ReaderFactory;
    import org.codehaus.plexus.util.xml.XmlStreamReader;
    import org.codehaus.plexus.util.xml.pull.XmlPullParserException;
    
    /**
     * Handles deserialization of a model from some kind of textual format like XML.
     *
     * @deprecated use {@link org.apache.maven.model.v4.MavenStaxReader} instead
     */
    @Named
    @Singleton
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 10 07:09:12 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  6. compat/maven-embedder/src/main/java/org/eclipse/sisu/plexus/PlexusXmlBeanConverter.java

    import org.codehaus.plexus.util.xml.Xpp3Dom;
    import org.codehaus.plexus.util.xml.pull.MXParser;
    import org.codehaus.plexus.util.xml.pull.XmlPullParser;
    import org.codehaus.plexus.util.xml.pull.XmlPullParserException;
    import org.eclipse.sisu.Priority;
    import org.eclipse.sisu.bean.BeanProperties;
    import org.eclipse.sisu.bean.BeanProperty;
    import org.eclipse.sisu.inject.Logs;
    import org.eclipse.sisu.inject.TypeArguments;
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jul 23 17:27:08 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  7. impl/maven-core/src/main/resources/META-INF/maven/extension.xml

        <exportedPackage>org.codehaus.plexus.util.xml.Xpp3DomBuilder</exportedPackage>
        <exportedPackage>org.codehaus.plexus.util.xml.pull.XmlPullParser</exportedPackage>
        <exportedPackage>org.codehaus.plexus.util.xml.pull.XmlPullParserException</exportedPackage>
        <exportedPackage>org.codehaus.plexus.util.xml.pull.XmlSerializer</exportedPackage>
    
        <!-- plexus-container, plexus-component-annotations -->
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Mar 24 14:07:06 UTC 2025
    - 12.6K bytes
    - Viewed (0)
Back to top