Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 107 for JAR (0.02 sec)

  1. subprojects/public-api/build.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    plugins {
        id("gradlebuild.public-api-jar")
        id("gradlebuild.publish-defaults")
    }
    
    group = "org.gradle.experimental"
    description = "Public API for Gradle"
    
    dependencies {
        distribution(project(":distributions-full"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 13:15:08 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/projects/transform/jar/before.pom

                            <executions>
                                <execution>
                                    <id>attach-javadocs</id>
                                    <goals>
                                        <goal>jar</goal>
                                    </goals>
                                    <configuration>
                                        <attach>true</attach>
                                    </configuration>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 12:04:39 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. build-logic/jvm/src/main/kotlin/gradlebuild/ConfigurationExtensions.kt

            attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category.LIBRARY))
            attribute(LibraryElements.LIBRARY_ELEMENTS_ATTRIBUTE, objects.named(LibraryElements.JAR))
            attribute(Bundling.BUNDLING_ATTRIBUTE, objects.named(Bundling.EXTERNAL))
        }
    }
    
    
    fun ResolvableConfiguration.configureAsRuntimeJarClasspath(objects: ObjectFactory) {
        attributes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:56 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. platforms/core-runtime/internal-instrumentation-processor/build.gradle.kts

    }
    
    tasks.named<Test>("test").configure {
        if (!javaVersion.isJava9Compatible) {
            // For Java8 tools.jar is needed for com.google.testing.compile:compile-testing
            classpath += javaLauncher.get().metadata.installationPath.files("lib/tools.jar")
        } else {
            // Needed for Java19 for com.google.testing.compile:compile-testing
            jvmArgs(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. maven-compat/src/test/java/org/apache/maven/project/EmptyLifecycleBindingsInjector.java

                                                    newPlugin("maven-surefire-plugin", "test"),
                                                    newPlugin("maven-jar-plugin", "jar"),
                                                    newPlugin("maven-install-plugin", "install"),
                                                    newPlugin("maven-deploy-plugin", "deploy")))
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/project/EmptyLifecycleBindingsInjector.java

                                                    newPlugin("maven-surefire-plugin", "test"),
                                                    newPlugin("maven-jar-plugin", "jar"),
                                                    newPlugin("maven-install-plugin", "install"),
                                                    newPlugin("maven-deploy-plugin", "deploy")))
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelCustomLibrarySourceAndJavadocCrossVersionSpec.groovy

            mavenRepo.module("org.example", "example-lib", "1.0").publish()
    
            File customSource = temporaryFolder.file('custom-source.jar')
            File customJavadoc = temporaryFolder.file('custom-javadoc.jar')
            String customSourcePath = customSource.absolutePath.replace('\\', '\\\\')
            String customJavadocPath = customJavadoc.absolutePath.replace('\\', '\\\\')
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. pom.xml

    				</configuration>
    			</plugin>
    			<plugin>
    				<artifactId>maven-source-plugin</artifactId>
    				<version>3.2.1</version>
    				<executions>
    					<execution>
    						<id>source-jar</id>
    						<phase>package</phase>
    						<goals>
    							<goal>jar</goal>
    						</goals>
    					</execution>
    				</executions>
    			</plugin>
    			<plugin>
    				<artifactId>maven-javadoc-plugin</artifactId>
    				<version>3.6.3</version>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun May 26 04:00:03 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/InitScriptExecutionIntegrationTest.groovy

            createExternalJar()
    
            and:
            TestFile initScript = file('init.gradle')
            initScript << """
    initscript {
        dependencies { classpath files('repo/test-1.3.jar') }
    }
    new org.gradle.test.BuildClass()
    println 'quiet message'
    logging.captureStandardOutput(LogLevel.ERROR)
    println 'error message'
    assert gradle != null
    assert initscript.classLoader == getClass().classLoader.parent
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. pom.xml

    	<modelVersion>4.0.0</modelVersion>
    	<artifactId>fess-suggest</artifactId>
    	<version>14.15.0-SNAPSHOT</version>
    	<packaging>jar</packaging>
    	<name>fess-suggest</name>
    	<scm>
    		<connection>scm:git:******@****.***:codelibs/fess-suggest.git</connection>
    		<developerConnection>scm:git:******@****.***:codelibs/fess-suggest.git</developerConnection>
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu May 30 06:30:41 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top