Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Sanusi (0.21 sec)

  1. apache-maven/src/assembly/shared/run.cmd

    "%JAVACMD%" ^
      %MAVEN_OPTS% ^
      %MAVEN_DEBUG_OPTS% ^
      -classpath %LAUNCHER_JAR% ^
      "-Dclassworlds.conf=%CLASSWORLDS_CONF%" ^
      "-Dmaven.home=%MAVEN_HOME%" ^
      "-Dlibrary.jansi.path=%MAVEN_HOME%\lib\jansi-native" ^
      "-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%" ^
      %LAUNCHER_CLASS% ^
      %MAVEN_ARGS% ^
      %*
    if ERRORLEVEL 1 goto error
    goto end
    
    :error
    set ERROR_CODE=1
    
    :end
    @endlocal & set ERROR_CODE=%ERROR_CODE%
    Batch File
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sat Mar 05 22:52:54 GMT 2022
    - 1.1K bytes
    - Viewed (0)
  2. apache-maven/src/assembly/maven/lib/jansi-native/README.txt

    You can add your own build for platforms not natively supported by Jansi.
    See here [1] on how to compile for your platform and here [2] how libraries
    follow Jansi's directory and filename conventions.
    
    [1] https://github.com/fusesource/jansi/tree/master/src/main/native
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Jul 18 17:22:19 GMT 2022
    - 486 bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/MessageBuilder.java

            return style(style).a(message).resetStyle();
        }
    
        MessageBuilder style(String style);
    
        MessageBuilder resetStyle();
    
        //
        // message building methods modelled after Ansi methods
        //
    
        @Nonnull
        @Override
        MessageBuilder append(CharSequence cs);
    
        @Nonnull
        @Override
        MessageBuilder append(CharSequence cs, int start, int end);
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Jan 08 10:37:09 GMT 2024
    - 7K bytes
    - Viewed (0)
  4. apache-maven/src/assembly/component.xml

            <include>*.conf</include>
          </includes>
          <lineEnding>dos</lineEnding>
        </fileSet>
        <fileSet>
          <directory>target/dependency/org/fusesource/jansi/internal/native</directory>
          <outputDirectory>lib/jansi-native</outputDirectory>
          <includes>
            <include>**</include>
          </includes>
        </fileSet>
    	<fileSet>
          <directory>src/assembly/maven/bin</directory>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sun Jun 04 19:03:41 GMT 2023
    - 4.4K bytes
    - Viewed (0)
  5. apache-maven/pom.xml

            <executions>
              <execution>
                <id>unpack-jansi-native</id>
                <goals>
                  <goal>unpack-dependencies</goal>
                </goals>
                <configuration>
                  <includeArtifactIds>jansi</includeArtifactIds>
                  <includes>org/fusesource/jansi/internal/native/Windows/**</includes>
                </configuration>
              </execution>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 08:48:58 GMT 2024
    - 10.9K bytes
    - Viewed (0)
  6. maven-core/src/main/resources/META-INF/maven/extension.xml

        <exportedPackage>org.slf4j.spi.*</exportedPackage>
        <exportedPackage>org.slf4j.helpers.*</exportedPackage>
        <exportedPackage>org.slf4j.event.*</exportedPackage>
    
        <!-- JAnsi -->
        <exportedPackage>org.fusesource.jansi.*</exportedPackage>
      </exportedPackages>
    
      <exportedArtifacts>
        <!-- maven 4 api -->
        <exportedArtifact>org.apache.maven:maven-api-core</exportedArtifact>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jan 08 10:37:09 GMT 2024
    - 12.2K bytes
    - Viewed (0)
  7. apache-maven/src/assembly/shared/run

    fi
    
    exec "$JAVACMD" \
      $MAVEN_OPTS \
      $MAVEN_DEBUG_OPTS \
      -classpath "$LAUNCHER_JAR" \
      "-Dclassworlds.conf=$CLASSWORLDS_CONF" \
      "-Dmaven.home=$MAVEN_HOME" \
      "-Dlibrary.jansi.path=${MAVEN_HOME}/lib/jansi-native" \
      "-Dmaven.multiModuleProjectDirectory=$MAVEN_PROJECTBASEDIR" \
      $LAUNCHER_CLASS \
      $MAVEN_ARGS \
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Dec 21 09:29:19 GMT 2021
    - 740 bytes
    - Viewed (0)
Back to top