/*
 * This file was generated by the Gradle 'init' task.
 *
 * This generated file contains a sample Java library project to get you started.
 * For more details take a look at the 'Building Java & JVM projects' chapter in the Gradle
 * User Manual available at https://docs.gradle.org/7.6.1/userguide/building_java_projects.html
 */

plugins {
    // Apply the java-library plugin for API and implementation separation.
    id 'java-library'
    id 'java'
    id 'maven-publish'
}

group "{{project_package}}"
version "{{project_version}}"

repositories {
    // Use Maven Central for resolving dependencies.
    mavenCentral()
}

dependencies {
    // Use JUnit Jupiter for testing.
    testImplementation 'org.junit.jupiter:junit-jupiter:5.9.1'

    // This dependency is exported to consumers, that is to say found on their compile classpath.
    api 'org.apache.commons:commons-math3:3.6.1'

    // This dependency is used internally, and not exposed to consumers on their own compile classpath.
    implementation 'com.google.guava:guava:31.1-jre'
}

tasks.named('test') {
    // Use JUnit Platform for unit tests.
    useJUnitPlatform()
}

// Please uncomment and edit following codes to setup publishing

publishing {
    publications {
        myLibrary(MavenPublication) {
            artifactId = "{{project_name}}"
            from components.java
        }
    }
    repositories {
        maven {
            allowInsecureProtocol = true
            name = "MyRepo" //  optional target repository name
            //url = "http://my.org.server/repo/url"
            //credentials {
            //    username = 'alice'
            //    password = 'my-password'
            //}
        }
    }
}

