Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,411 for 1library (0.24 sec)

  1. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/kotlinlibrary/Library.kt.template

    ${fileComment.multilineComment}${packageDecl.statement}
    class Library {
        fun someLibraryMethod(): Boolean {
            return true
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 139 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/readme-templates/native-library-summary.adoc.template

    * Check out the user manual chapter on link:{userManualPath}/building_${languageLC.raw}_projects.html[Building ${language.raw} projects]...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 676 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/readme-templates/library-body.adoc.template

    More information about the features the `java-library` plugin adds to any JVM library project, such as API and implementation separation, can be found in the link:{userManualPath}/java_library_plugin.html[Java Library Plugin documentation].
    
    == Assemble the library JAR
    
    To build the project, run the `build` task. You can use the regular `gradle` command, but when a project includes a wrapper script, it is considered good form to use it instead.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/readme-templates/library-summary.adoc.template

    == Next steps
    
    Building a library is just one aspect of reusing code across project boundaries.
    From here, you may be interested in:
    
     - link:{userManualPath}/building_java_projects.html[Building Java & JVM projects]
     - link:{userManualPath}/java_library_plugin.html[Java Library Plugin documentation]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 781 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/build-organization/multi-project-with-convention-plugins/groovy/buildSrc/src/main/groovy/myproject.library-conventions.gradle

    // Define Java Library conventions for this organization.
    // Projects need to use the organization's Java conventions and publish using Maven Publish
    
    // tag::plugins[]
    plugins {
        id 'java-library'
        id 'maven-publish'
        id 'myproject.java-conventions'
    }
    // end::plugins[]
    
    // Projects have the 'com.example' group by convention
    group = 'com.example'
    
    publishing {
        publications {
            library(MavenPublication) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/readme-templates/native-library-body.adoc.template

    To build a static library, please refer to the https://github.com/gradle/native-samples/tree/master/cpp/static-library[static library sample].
    
    NOTE: Dependencies on other projects isn't covered in this guide.
    To learn more about this subject, have a look at the https://github.com/gradle/native-samples/tree/master/cpp/transitive-dependencies[transitive dependency sample] for a demonstration.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/img/swift-library-configurations.png

    swift-library-configurations.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/img/swift-library-configurations.dot

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // dot -Tpng src/docs/userguide/img/swift-library-configurations.dot > src/docs/userguide/img/swift-library-configurations.png
    digraph swiftLibraryConfigurations {
      graph [ dpi = 100, fontname="Sans"];
      node [fontname = "Sans"];
      edge [fontname = "Sans"];
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/img/cpp-library-configurations.dot

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // dot -Tpng src/docs/userguide/img/cpp-library-configurations.dot > src/docs/userguide/img/cpp-library-configurations.png
    digraph cppLibraryConfigurations {
      graph [ dpi = 100, fontname="Sans"];
      node [fontname = "Sans"];
      edge [fontname = "Sans"];
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/plugins/precompiledScriptPlugins-inBuildSrc/groovy/buildSrc/src/main/groovy/java-library-convention.gradle

    plugins {
        id 'java-library'
        id 'checkstyle'
    }
    
    java {
        sourceCompatibility = JavaVersion.VERSION_11
        targetCompatibility = JavaVersion.VERSION_11
    }
    
    checkstyle {
        maxWarnings = 0
        // ...
    }
    
    tasks.withType(JavaCompile) {
        options.warnings = true
        // ...
    }
    
    dependencies {
        testImplementation("junit:junit:4.13")
        // ...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 353 bytes
    - Viewed (0)
Back to top