Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 25 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,26 @@
/*
* This file was generated by the Gradle 'init' task.
*
* Copyright (c) 2025. Jefferson Lab (JLab). All rights reserved. Permission
* to use, copy, modify, and distribute this software and its documentation for
* educational, research, and not-for-profit purposes, without fee and without a
* signed licensing agreement.
*
* IN NO EVENT SHALL JLAB BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL
* INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING
* OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF JLAB HAS
* BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* JLAB SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE. THE CLARA SOFTWARE AND ACCOMPANYING DOCUMENTATION, IF ANY,
* PROVIDED HEREUNDER IS PROVIDED "AS IS". JLAB HAS NO OBLIGATION TO PROVIDE
* MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
*
* This software was developed under the United States Government license.
* For more information contact maintainer at jzarling@jlab.org
* Department of Experimental Nuclear Physics, Jefferson Lab.
*
* This project uses @Incubating APIs which are subject to change.
*/

Expand All @@ -11,6 +31,11 @@ plugins {
id("com.gradleup.shadow") version "9.2.2"
}

java {
toolchain { languageVersion.set(JavaLanguageVersion.of(17)) }
withJavadocJar()
}

repositories {
mavenLocal()
maven {
Expand All @@ -29,9 +54,6 @@ dependencies {
group = "org.jlab.coda"
version = "6.2.0"
description = "Jefferson Lab EVIO Java Library (JEVIO)"
java.sourceCompatibility = JavaVersion.VERSION_17
java.targetCompatibility = JavaVersion.VERSION_17

defaultTasks("build")

publishing {
Expand Down
Loading