Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 96 for jar (0.15 sec)

  1. build-logic/jvm/src/main/kotlin/gradlebuild.launchable-jar.gradle.kts

            attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category.LIBRARY))
            attribute(LibraryElements.LIBRARY_ELEMENTS_ATTRIBUTE, objects.named(LibraryElements.JAR))
        }
    }
    
    tasks.jar.configure {
        val classpath = manifestClasspath.elements.map { classpathDependency ->
            classpathDependency.joinToString(" ") {
                it.asFile.name
            }
        }
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Wed Feb 28 23:38:57 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  2. build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-jar.gradle.kts

    import gradlebuild.identity.extension.ModuleIdentityExtension
    import java.util.jar.Attributes
    
    plugins {
        id("gradlebuild.module-identity")
    }
    
    val moduleIdentity = the<ModuleIdentityExtension>()
    
    configureJarTasks()
    
    pluginManager.withPlugin("java-base") {
        configureClasspathManifestGeneration()
    }
    
    fun configureJarTasks() {
        tasks.withType<Jar>().configureEach {
            archiveBaseName = moduleIdentity.baseName
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Mar 28 20:26:58 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  3. deps.xml

    		</get>
    		<copy file="${target.dir}/${jar.artifactId}-${file.version}.jar"
    			todir="${crawler.dir}/lib"/>
    		<copy file="${target.dir}/${jar.artifactId}-${file.version}.jar"
    			todir="${suggest.dir}/lib"/>
    		<copy file="${target.dir}/${jar.artifactId}-${file.version}.jar"
    			todir="${thumbnail.dir}/lib"/>
    	</target>
    
    	<target name="install.plugin.jar">
    XML
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Apr 13 11:44:26 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularization.java

    import java.util.Map;
    import java.util.jar.Attributes;
    import java.util.jar.JarFile;
    import java.util.jar.Manifest;
    import java.util.stream.Stream;
    import java.util.zip.ZipEntry;
    
    import org.apache.maven.api.JavaPathType;
    import org.apache.maven.api.annotations.Nonnull;
    
    /**
     * Information about the modules contained in a path element.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 11.2K bytes
    - Viewed (0)
  5. maven-compat/src/test/resources/pom.xml

          <type>jar</type>
          <scope>compile</scope>
        </dependency>
        <dependency>
          <groupId>marmalade</groupId>
          <artifactId>marmalade-el-ognl</artifactId>
          <version>0.1</version>
          <type>jar</type>
          <scope>compile</scope>
        </dependency>
        <dependency>
          <groupId>plexus</groupId>
          <artifactId>plexus-compiler-api</artifactId>
          <version>1.0</version>
          <type>jar</type>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 18 00:24:19 GMT 2024
    - 4.9K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/Type.java

        /**
         * Artifact type name for a JAR file to unconditionally place on the class-path.
         * If the JAR is modular, its module information are ignored.
         * This type is new in Maven 4.
         */
        String CLASSPATH_JAR = "classpath-jar";
    
        /**
         * Artifact type name for a JAR file to unconditionally place on the module-path.
         * If the JAR is not modular, then it is loaded by Java as an unnamed module.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Mar 29 09:32:19 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/jar/JarFileUtil.java

                throw new IORuntimeException(e);
            }
        }
    
        /**
         * 指定されたJarファイルエントリの内容を読み込むための入力ストリームを返します。
         *
         * @param file
         *            Jarファイル。{@literal null}であってはいけません
         * @param entry
         *            Jarファイルエントリ。{@literal null}であってはいけません
         * @return 指定されたJarファイルエントリの内容を読み込むための入力ストリーム
         */
        public static InputStream getInputStream(final JarFile file, final ZipEntry entry) {
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 5.4K bytes
    - Viewed (0)
  8. maven-compat/src/test/java/org/apache/maven/repository/legacy/DefaultWagonManagerTest.java

        }
    
        @Test
        void testGetMissingJar() throws TransferFailedException, UnsupportedProtocolException, IOException {
            Artifact artifact = createTestArtifact("target/test-data/get-missing-jar", "jar");
    
            ArtifactRepository repo = createStringRepo();
    
            assertThrows(ResourceDoesNotExistException.class, () -> wagonManager.getArtifact(artifact, repo, null, false));
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 13.4K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/type/DefaultTypeProvider.java

                    new DefaultType(
                            Type.TEST_JAR,
                            Language.JAVA_FAMILY,
                            "jar",
                            "tests",
                            false,
                            JavaPathType.CLASSES,
                            JavaPathType.PATCH_MODULE),
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/helper/PluginHelperTest.java

            assertEquals("plugin/repo2/fess-ds-atlassian/12.2.0-SNAPSHOT/fess-ds-atlassian-12.2.0-20180814.210714-10.jar",
                    list.get(0).getUrl());
        }
    
        public void test_getArtifactFromFileName1() {
            Artifact artifact = pluginHelper.getArtifactFromFileName(ArtifactType.DATA_STORE, "fess-ds-atlassian-13.2.0.jar");
            assertEquals("fess-ds-atlassian", artifact.getName());
            assertEquals("13.2.0", artifact.getVersion());
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.9K bytes
    - Viewed (0)
Back to top