Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 50 for embedder (0.09 seconds)

  1. compat/pom.xml

        <module>maven-settings</module>
        <module>maven-settings-builder</module>
        <module>maven-artifact</module>
        <module>maven-resolver-provider</module>
        <module>maven-repository-metadata</module>
        <module>maven-embedder</module>
        <module>maven-compat</module>
        <module>maven-toolchain-model</module>
        <module>maven-toolchain-builder</module>
      </modules>
    
      <properties>
        <project.directory>compat</project.directory>
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Sun Nov 16 17:53:28 GMT 2025
    - 1.9K bytes
    - Click Count (0)
  2. compat/maven-embedder/pom.xml

      <parent>
        <groupId>org.apache.maven</groupId>
        <artifactId>maven-compat-modules</artifactId>
        <version>4.1.0-SNAPSHOT</version>
      </parent>
    
      <artifactId>maven-embedder</artifactId>
    
      <name>Maven Embedder (deprecated)</name>
      <description>Maven embeddable component, with CLI and logging support.</description>
    
      <dependencies>
        <!--  Maven4 API -->
        <dependency>
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Sep 17 10:01:14 GMT 2025
    - 6.9K bytes
    - Click Count (0)
  3. compat/maven-embedder/src/examples/simple-project/src/main/java/org/apache/maven/embedder/App.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    
    package org.apache.maven.embedder;
    
    /**
     * Hello world!
     *
     */
    public class App
    {
        public static void main( String[] args )
        {
            System.out.println( "Hello World!" );
        }
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Sun Mar 30 14:10:21 GMT 2025
    - 996 bytes
    - Click Count (0)
  4. compat/maven-embedder/src/examples/simple-project/src/test/java/org/apache/maven/embedder/AppTest.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    
    package org.apache.maven.embedder;
    
    import junit.framework.Test;
    import junit.framework.TestCase;
    import junit.framework.TestSuite;
    
    /**
     * Unit test for simple App.
     */
    public class AppTest
        extends TestCase
    {
        /**
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Sun Mar 30 14:10:21 GMT 2025
    - 1.4K bytes
    - Click Count (0)
  5. compat/maven-embedder/src/examples/simple-project/pom.xml

      xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
      <modelVersion>4.0.0</modelVersion>
      <groupId>org.apache.maven.embedder</groupId>
      <artifactId>simple-project</artifactId>
      <version>1.0-SNAPSHOT</version>
      <name>simple-project</name>
      <url>http://maven.apache.org</url>
      <dependencies>
        <dependency>
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 1.4K bytes
    - Click Count (0)
  6. internal/grid/grid_types_msgp_test.go

    					z.Embedded.Num, err = dc.ReadInt()
    					if err != nil {
    						err = msgp.WrapError(err, "Embedded", "Num")
    						return
    					}
    				case "String":
    					z.Embedded.String, err = dc.ReadString()
    					if err != nil {
    						err = msgp.WrapError(err, "Embedded", "String")
    						return
    					}
    				default:
    					err = dc.Skip()
    					if err != nil {
    						err = msgp.WrapError(err, "Embedded")
    						return
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 8.1K bytes
    - Click Count (0)
  7. tests/embedded_struct_test.go

    		Name  string
    		Email string
    	}
    
    	type HNPost struct {
    		BasePost
    		Author  `gorm:"EmbeddedPrefix:user_"` // Embedded struct
    		Upvotes int32
    	}
    
    	type EngadgetPost struct {
    		BasePost BasePost `gorm:"Embedded"`
    		Author   *Author  `gorm:"Embedded;EmbeddedPrefix:author_"` // Embedded struct
    		ImageUrl string
    	}
    
    	DB.Migrator().DropTable(&HNPost{}, &EngadgetPost{})
    Created: Sun Dec 28 09:35:17 GMT 2025
    - Last Modified: Wed May 08 04:07:58 GMT 2024
    - 7.3K bytes
    - Click Count (0)
  8. src/cmd/api/testdata/src/pkg/p1/golden.txt

    pkg p1, type S2 struct
    pkg p1, type S2 struct, Extra bool
    pkg p1, type S2 struct, embedded S
    pkg p1, type S2 struct, embedded S //deprecated
    pkg p1, type SI struct
    pkg p1, type SI struct, I int
    pkg p1, type T struct
    pkg p1, type TPtrExported struct
    pkg p1, type TPtrExported struct, embedded *Embedded
    pkg p1, type TPtrUnexported struct
    pkg p1, type Time struct
    pkg p1, type URL //deprecated
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Thu Jul 24 16:04:17 GMT 2025
    - 3.6K bytes
    - Click Count (0)
  9. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/InvokerRequest.java

         */
        boolean parsingFailed();
    
        /**
         * Returns {@code true} if this call happens in "embedded" mode.
         *
         * @see ParserRequest#embedded()
         */
        default boolean embedded() {
            return parserRequest().embedded();
        }
    
        /**
         * Returns the current working directory for the Maven execution.
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Jun 11 13:14:09 GMT 2025
    - 6.7K bytes
    - Click Count (0)
  10. impl/maven-cli/src/main/java/org/apache/maven/cling/ClingSupport.java

                                .stdOut(stdOut)
                                .stdErr(stdErr)
                                .embedded(embedded)
                                .build()));
            } catch (InvokerException.ExitException e) {
                return e.getExitCode();
            } catch (Exception e) {
                // last resort; as ideally we should get ExitException only
                new SystemLogger(stdErr).error(e.getMessage(), e);
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Sat Feb 08 16:25:25 GMT 2025
    - 3.6K bytes
    - Click Count (0)
Back to Top