diff --git a/API/build.gradle b/API/build.gradle deleted file mode 100644 index 4b3c1ef..0000000 --- a/API/build.gradle +++ /dev/null @@ -1,6 +0,0 @@ -group "org.tbasket.api" - -dependencies { - api 'dev.zio:zio-http_2.13:0.0.3' - api "dev.zio:zio_2.13:2.0.4" -} \ No newline at end of file diff --git a/API/src/main/scala/org/tbasket/api/APIException.scala b/API/src/org/tbasket/api/APIException.scala similarity index 100% rename from API/src/main/scala/org/tbasket/api/APIException.scala rename to API/src/org/tbasket/api/APIException.scala diff --git a/API/src/main/scala/org/tbasket/api/Endpoint.scala b/API/src/org/tbasket/api/Endpoint.scala similarity index 99% rename from API/src/main/scala/org/tbasket/api/Endpoint.scala rename to API/src/org/tbasket/api/Endpoint.scala index a8a1800..db09717 100644 --- a/API/src/main/scala/org/tbasket/api/Endpoint.scala +++ b/API/src/org/tbasket/api/Endpoint.scala @@ -53,5 +53,4 @@ class Endpoint(port: Int) { object Endpoint { final val LOG = LogManager.getLogger("API") - } diff --git a/API/src/main/scala/org/tbasket/api/compute/APIRequestHandler.scala b/API/src/org/tbasket/api/compute/APIRequestHandler.scala similarity index 100% rename from API/src/main/scala/org/tbasket/api/compute/APIRequestHandler.scala rename to API/src/org/tbasket/api/compute/APIRequestHandler.scala diff --git a/src/main/scala/org/tbasket/EndpointSetup.scala b/Core/src/org/tbasket/EndpointSetup.scala similarity index 100% rename from src/main/scala/org/tbasket/EndpointSetup.scala rename to Core/src/org/tbasket/EndpointSetup.scala diff --git a/src/main/scala/org/tbasket/ExternalBasketServerException.scala b/Core/src/org/tbasket/ExternalBasketServerException.scala similarity index 100% rename from src/main/scala/org/tbasket/ExternalBasketServerException.scala rename to Core/src/org/tbasket/ExternalBasketServerException.scala diff --git a/src/main/scala/org/tbasket/InternalBasketServerException.scala b/Core/src/org/tbasket/InternalBasketServerException.scala similarity index 100% rename from src/main/scala/org/tbasket/InternalBasketServerException.scala rename to Core/src/org/tbasket/InternalBasketServerException.scala diff --git a/src/main/scala/org/tbasket/Main.scala b/Core/src/org/tbasket/Main.scala similarity index 100% rename from src/main/scala/org/tbasket/Main.scala rename to Core/src/org/tbasket/Main.scala diff --git a/src/main/scala/org/tbasket/handler/IncrementHandler.scala b/Core/src/org/tbasket/handler/IncrementHandler.scala similarity index 100% rename from src/main/scala/org/tbasket/handler/IncrementHandler.scala rename to Core/src/org/tbasket/handler/IncrementHandler.scala diff --git a/src/main/scala/org/tbasket/handler/LoginHandler.scala b/Core/src/org/tbasket/handler/LoginHandler.scala similarity index 98% rename from src/main/scala/org/tbasket/handler/LoginHandler.scala rename to Core/src/org/tbasket/handler/LoginHandler.scala index c4351a1..3e168c8 100644 --- a/src/main/scala/org/tbasket/handler/LoginHandler.scala +++ b/Core/src/org/tbasket/handler/LoginHandler.scala @@ -4,7 +4,7 @@ import org.tbasket.api.compute.APIRequestHandler import org.tbasket.db.Database.ctx._ import org.tbasket.db.schemas.User import org.tbasket.session.UserSessionHandler -import zio.ZIO +import zio.{ZEnvironment, ZIO} import zio.http.model.{Cookie, Headers, Status} import zio.http.{Request, Response} import zio.json._ diff --git a/src/main/scala/org/tbasket/session/UserSession.scala b/Core/src/org/tbasket/session/UserSession.scala similarity index 100% rename from src/main/scala/org/tbasket/session/UserSession.scala rename to Core/src/org/tbasket/session/UserSession.scala diff --git a/src/main/scala/org/tbasket/session/UserSessionHandler.scala b/Core/src/org/tbasket/session/UserSessionHandler.scala similarity index 100% rename from src/main/scala/org/tbasket/session/UserSessionHandler.scala rename to Core/src/org/tbasket/session/UserSessionHandler.scala diff --git a/src/test/scala/org/tbasket/test/IncrementRequestHandler.scala b/Core/test/scala/org/tbasket/test/IncrementRequestHandler.scala similarity index 100% rename from src/test/scala/org/tbasket/test/IncrementRequestHandler.scala rename to Core/test/scala/org/tbasket/test/IncrementRequestHandler.scala diff --git a/DB/build.gradle b/DB/build.gradle deleted file mode 100644 index 23aa6b3..0000000 --- a/DB/build.gradle +++ /dev/null @@ -1,9 +0,0 @@ -group "org.tbasket.api" - -dependencies { - - implementation 'org.xerial:sqlite-jdbc:3.40.0.0' - - implementation 'io.getquill:quill-jdbc-zio_2.13:3.9.0' - implementation 'io.getquill:quill-zio_2.13:3.9.0' -} diff --git a/DB/src/main/resources/database.properties b/DB/resources/database.properties similarity index 100% rename from DB/src/main/resources/database.properties rename to DB/resources/database.properties diff --git a/DB/src/main/resources/table_init.sql b/DB/resources/table_init.sql similarity index 100% rename from DB/src/main/resources/table_init.sql rename to DB/resources/table_init.sql diff --git a/DB/src/main/scala/org/tbasket/db/Database.scala b/DB/src/org/tbasket/db/Database.scala similarity index 100% rename from DB/src/main/scala/org/tbasket/db/Database.scala rename to DB/src/org/tbasket/db/Database.scala diff --git a/DB/src/main/scala/org/tbasket/db/schemas/Member.scala b/DB/src/org/tbasket/db/schemas/Member.scala similarity index 100% rename from DB/src/main/scala/org/tbasket/db/schemas/Member.scala rename to DB/src/org/tbasket/db/schemas/Member.scala diff --git a/DB/src/main/scala/org/tbasket/db/schemas/Tactic.scala b/DB/src/org/tbasket/db/schemas/Tactic.scala similarity index 100% rename from DB/src/main/scala/org/tbasket/db/schemas/Tactic.scala rename to DB/src/org/tbasket/db/schemas/Tactic.scala diff --git a/DB/src/main/scala/org/tbasket/db/schemas/Team.scala b/DB/src/org/tbasket/db/schemas/Team.scala similarity index 100% rename from DB/src/main/scala/org/tbasket/db/schemas/Team.scala rename to DB/src/org/tbasket/db/schemas/Team.scala diff --git a/DB/src/main/scala/org/tbasket/db/schemas/User.scala b/DB/src/org/tbasket/db/schemas/User.scala similarity index 100% rename from DB/src/main/scala/org/tbasket/db/schemas/User.scala rename to DB/src/org/tbasket/db/schemas/User.scala diff --git a/build.gradle b/build.gradle deleted file mode 100644 index b0b6317..0000000 --- a/build.gradle +++ /dev/null @@ -1,66 +0,0 @@ -plugins { - id 'java' - id 'java-library' - id 'scala' - id 'application' //for 'run' task - id 'com.adarshr.test-logger' version '3.2.0' //fancy prints for tests - id 'com.github.johnrengelman.shadow' version '7.1.2' //for building optimised jar -} - -final var scalaVersion = "2.13" -mainClassName = 'org.tbasket.Main' -group 'org.tbasket' - -println("Running gradle on java version ${System.getProperty("java.version")}.") - -repositories { - mavenCentral() -} - -shadowJar { - archivesBaseName = "server" -} - -dependencies { - - implementation project(':API') - implementation project(':DB') - implementation 'dev.zio:zio_2.13:2.0.6' - -} - -testlogger { - theme 'mocha' -} - -test { - useJUnitPlatform() - testlogger { - theme 'standard-parallel' - } -} - -run { - standardInput = System.in -} - -allprojects { - apply plugin: 'scala' - apply plugin: 'java-library' - - repositories { - mavenCentral() - } - - dependencies { - testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1' - testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1' - - implementation 'org.apache.logging.log4j:log4j-core:2.17.2' - implementation 'org.apache.logging.log4j:log4j-api:2.17.2' - implementation 'org.slf4j:slf4j-simple:2.0.4' - implementation "org.scala-lang:scala-library:$scalaVersion.10" - - } - -} diff --git a/build.sc b/build.sc new file mode 100644 index 0000000..95c529f --- /dev/null +++ b/build.sc @@ -0,0 +1,31 @@ +import mill._, scalalib._ + +trait ServerModule extends ScalaModule { + override final def scalaVersion = "3.2.0" +} + +object Core extends ServerModule { + override def ivyDeps = Agg( + ivy"dev.zio::zio:2.0.6", + ivy"dev.zio::zio-test:2.0.6", + ivy"dev.zio::zio-json:0.4.2", + + ivy"org.apache.logging.log4j:log4j-slf4j-impl:2.19.0" + ) +} + +object API extends ServerModule { + override def ivyDeps = Agg( + ivy"dev.zio::zio-http:0.0.3", + + ivy"org.apache.logging.log4j:log4j-slf4j-impl:2.19.0" + ) +} + +object DB extends ServerModule { + override def ivyDeps = Agg( + ivy"io.getquill::quill-jdbc-zio:4.6.0", + + ivy"org.apache.logging.log4j:log4j-slf4j-impl:2.19.0" + ) +} \ No newline at end of file diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar deleted file mode 100644 index 41d9927..0000000 Binary files a/gradle/wrapper/gradle-wrapper.jar and /dev/null differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties deleted file mode 100644 index ae04661..0000000 --- a/gradle/wrapper/gradle-wrapper.properties +++ /dev/null @@ -1,5 +0,0 @@ -distributionBase=GRADLE_USER_HOME -distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip -zipStoreBase=GRADLE_USER_HOME -zipStorePath=wrapper/dists diff --git a/gradlew b/gradlew deleted file mode 100755 index 1b6c787..0000000 --- a/gradlew +++ /dev/null @@ -1,234 +0,0 @@ -#!/bin/sh - -# -# Copyright © 2015-2021 the original authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# https://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - -############################################################################## -# -# Gradle start up script for POSIX generated by Gradle. -# -# Important for running: -# -# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is -# noncompliant, but you have some other compliant shell such as ksh or -# bash, then to run this script, type that shell name before the whole -# command line, like: -# -# ksh Gradle -# -# Busybox and similar reduced shells will NOT work, because this script -# requires all of these POSIX shell features: -# * functions; -# * expansions «$var», «${var}», «${var:-default}», «${var+SET}», -# «${var#prefix}», «${var%suffix}», and «$( cmd )»; -# * compound commands having a testable exit status, especially «case»; -# * various built-in commands including «command», «set», and «ulimit». -# -# Important for patching: -# -# (2) This script targets any POSIX shell, so it avoids extensions provided -# by Bash, Ksh, etc; in particular arrays are avoided. -# -# The "traditional" practice of packing multiple parameters into a -# space-separated string is a well documented source of bugs and security -# problems, so this is (mostly) avoided, by progressively accumulating -# options in "$@", and eventually passing that to Java. -# -# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, -# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; -# see the in-line comments for details. -# -# There are tweaks for specific operating systems such as AIX, CygWin, -# Darwin, MinGW, and NonStop. -# -# (3) This script is generated from the Groovy template -# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt -# within the Gradle project. -# -# You can find Gradle at https://github.com/gradle/gradle/. -# -############################################################################## - -# Attempt to set APP_HOME - -# Resolve links: $0 may be a link -app_path=$0 - -# Need this for daisy-chained symlinks. -while - APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path - [ -h "$app_path" ] -do - ls=$( ls -ld "$app_path" ) - link=${ls#*' -> '} - case $link in #( - /*) app_path=$link ;; #( - *) app_path=$APP_HOME$link ;; - esac -done - -APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit - -APP_NAME="Gradle" -APP_BASE_NAME=${0##*/} - -# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' - -# Use the maximum available, or set MAX_FD != -1 to use that value. -MAX_FD=maximum - -warn () { - echo "$*" -} >&2 - -die () { - echo - echo "$*" - echo - exit 1 -} >&2 - -# OS specific support (must be 'true' or 'false'). -cygwin=false -msys=false -darwin=false -nonstop=false -case "$( uname )" in #( - CYGWIN* ) cygwin=true ;; #( - Darwin* ) darwin=true ;; #( - MSYS* | MINGW* ) msys=true ;; #( - NONSTOP* ) nonstop=true ;; -esac - -CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar - - -# Determine the Java command to use to start the JVM. -if [ -n "$JAVA_HOME" ] ; then - if [ -x "$JAVA_HOME/jre/sh/java" ] ; then - # IBM's JDK on AIX uses strange locations for the executables - JAVACMD=$JAVA_HOME/jre/sh/java - else - JAVACMD=$JAVA_HOME/bin/java - fi - if [ ! -x "$JAVACMD" ] ; then - die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME - -Please set the JAVA_HOME variable in your environment to match the -location of your Java installation." - fi -else - JAVACMD=java - which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. - -Please set the JAVA_HOME variable in your environment to match the -location of your Java installation." -fi - -# Increase the maximum file descriptors if we can. -if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then - case $MAX_FD in #( - max*) - MAX_FD=$( ulimit -H -n ) || - warn "Could not query maximum file descriptor limit" - esac - case $MAX_FD in #( - '' | soft) :;; #( - *) - ulimit -n "$MAX_FD" || - warn "Could not set maximum file descriptor limit to $MAX_FD" - esac -fi - -# Collect all arguments for the java command, stacking in reverse order: -# * args from the command line -# * the main class name -# * -classpath -# * -D...appname settings -# * --module-path (only if needed) -# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. - -# For Cygwin or MSYS, switch paths to Windows format before running java -if "$cygwin" || "$msys" ; then - APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) - CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) - - JAVACMD=$( cygpath --unix "$JAVACMD" ) - - # Now convert the arguments - kludge to limit ourselves to /bin/sh - for arg do - if - case $arg in #( - -*) false ;; # don't mess with options #( - /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath - [ -e "$t" ] ;; #( - *) false ;; - esac - then - arg=$( cygpath --path --ignore --mixed "$arg" ) - fi - # Roll the args list around exactly as many times as the number of - # args, so each arg winds up back in the position where it started, but - # possibly modified. - # - # NB: a `for` loop captures its iteration list before it begins, so - # changing the positional parameters here affects neither the number of - # iterations, nor the values presented in `arg`. - shift # remove old arg - set -- "$@" "$arg" # push replacement arg - done -fi - -# Collect all arguments for the java command; -# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of -# shell script including quotes and variable substitutions, so put them in -# double quotes to make sure that they get re-expanded; and -# * put everything else in single quotes, so that it's not re-expanded. - -set -- \ - "-Dorg.gradle.appname=$APP_BASE_NAME" \ - -classpath "$CLASSPATH" \ - org.gradle.wrapper.GradleWrapperMain \ - "$@" - -# Use "xargs" to parse quoted args. -# -# With -n1 it outputs one arg per line, with the quotes and backslashes removed. -# -# In Bash we could simply go: -# -# readarray ARGS < <( xargs -n1 <<<"$var" ) && -# set -- "${ARGS[@]}" "$@" -# -# but POSIX shell has neither arrays nor command substitution, so instead we -# post-process each arg (as a line of input to sed) to backslash-escape any -# character that might be a shell metacharacter, then use eval to reverse -# that process (while maintaining the separation between arguments), and wrap -# the whole thing up as a single "set" statement. -# -# This will of course break if any of these variables contains a newline or -# an unmatched quote. -# - -eval "set -- $( - printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | - xargs -n1 | - sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | - tr '\n' ' ' - )" '"$@"' - -exec "$JAVACMD" "$@" diff --git a/gradlew.bat b/gradlew.bat deleted file mode 100644 index 107acd3..0000000 --- a/gradlew.bat +++ /dev/null @@ -1,89 +0,0 @@ -@rem -@rem Copyright 2015 the original author or authors. -@rem -@rem Licensed under the Apache License, Version 2.0 (the "License"); -@rem you may not use this file except in compliance with the License. -@rem You may obtain a copy of the License at -@rem -@rem https://www.apache.org/licenses/LICENSE-2.0 -@rem -@rem Unless required by applicable law or agreed to in writing, software -@rem distributed under the License is distributed on an "AS IS" BASIS, -@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -@rem See the License for the specific language governing permissions and -@rem limitations under the License. -@rem - -@if "%DEBUG%" == "" @echo off -@rem ########################################################################## -@rem -@rem Gradle startup script for Windows -@rem -@rem ########################################################################## - -@rem Set local scope for the variables with windows NT shell -if "%OS%"=="Windows_NT" setlocal - -set DIRNAME=%~dp0 -if "%DIRNAME%" == "" set DIRNAME=. -set APP_BASE_NAME=%~n0 -set APP_HOME=%DIRNAME% - -@rem Resolve any "." and ".." in APP_HOME to make it shorter. -for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi - -@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" - -@rem Find java.exe -if defined JAVA_HOME goto findJavaFromJavaHome - -set JAVA_EXE=java.exe -%JAVA_EXE% -version >NUL 2>&1 -if "%ERRORLEVEL%" == "0" goto execute - -echo. -echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. - -goto fail - -:findJavaFromJavaHome -set JAVA_HOME=%JAVA_HOME:"=% -set JAVA_EXE=%JAVA_HOME%/bin/java.exe - -if exist "%JAVA_EXE%" goto execute - -echo. -echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. - -goto fail - -:execute -@rem Setup the command line - -set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar - - -@rem Execute Gradle -"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* - -:end -@rem End local scope for the variables with windows NT shell -if "%ERRORLEVEL%"=="0" goto mainEnd - -:fail -rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of -rem the _cmd.exe /c_ return code! -if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 -exit /b 1 - -:mainEnd -if "%OS%"=="Windows_NT" endlocal - -:omega diff --git a/mill b/mill new file mode 100755 index 0000000..31218fd --- /dev/null +++ b/mill @@ -0,0 +1,65 @@ +#!/usr/bin/env sh + +# This is a wrapper script, that automatically download mill from GitHub release pages +# You can give the required mill version with MILL_VERSION env variable +# If no version is given, it falls back to the value of DEFAULT_MILL_VERSION + +set -e + +if [ -z "${DEFAULT_MILL_VERSION}" ] ; then + DEFAULT_MILL_VERSION=0.10.9 +fi + +if [ -z "$MILL_VERSION" ] ; then + if [ -f ".mill-version" ] ; then + MILL_VERSION="$(head -n 1 .mill-version 2> /dev/null)" + elif [ -f ".config/mill-version" ] ; then + MILL_VERSION="$(head -n 1 .config/mill-version 2> /dev/null)" + elif [ -f "mill" ] && [ "$0" != "mill" ] ; then + MILL_VERSION=$(grep -F "DEFAULT_MILL_VERSION=" "mill" | head -n 1 | cut -d= -f2) + else + MILL_VERSION=$DEFAULT_MILL_VERSION + fi +fi + +if [ "x${XDG_CACHE_HOME}" != "x" ] ; then + MILL_DOWNLOAD_PATH="${XDG_CACHE_HOME}/mill/download" +else + MILL_DOWNLOAD_PATH="${HOME}/.cache/mill/download" +fi +MILL_EXEC_PATH="${MILL_DOWNLOAD_PATH}/${MILL_VERSION}" + +version_remainder="$MILL_VERSION" +MILL_MAJOR_VERSION="${version_remainder%%.*}"; version_remainder="${version_remainder#*.}" +MILL_MINOR_VERSION="${version_remainder%%.*}"; version_remainder="${version_remainder#*.}" + +if [ ! -s "$MILL_EXEC_PATH" ] ; then + mkdir -p "$MILL_DOWNLOAD_PATH" + if [ "$MILL_MAJOR_VERSION" -gt 0 ] || [ "$MILL_MINOR_VERSION" -ge 5 ] ; then + ASSEMBLY="-assembly" + fi + DOWNLOAD_FILE=$MILL_EXEC_PATH-tmp-download + MILL_VERSION_TAG=$(echo $MILL_VERSION | sed -E 's/([^-]+)(-M[0-9]+)?(-.*)?/\1\2/') + MILL_DOWNLOAD_URL="https://github.com/lihaoyi/mill/releases/download/${MILL_VERSION_TAG}/$MILL_VERSION${ASSEMBLY}" + curl --fail -L -o "$DOWNLOAD_FILE" "$MILL_DOWNLOAD_URL" + chmod +x "$DOWNLOAD_FILE" + mv "$DOWNLOAD_FILE" "$MILL_EXEC_PATH" + unset DOWNLOAD_FILE + unset MILL_DOWNLOAD_URL +fi + +if [ -z "$MILL_MAIN_CLI" ] ; then + MILL_MAIN_CLI="${0}" +fi + +MILL_FIRST_ARG="" +if [ "$1" = "--bsp" ] || [ "$1" = "-i" ] || [ "$1" = "--interactive" ] || [ "$1" = "--no-server" ] || [ "$1" = "--repl" ] || [ "$1" = "--help" ] ; then + # Need to preserve the first position of those listed options + MILL_FIRST_ARG=$1 + shift +fi + +unset MILL_DOWNLOAD_PATH +unset MILL_VERSION + +exec $MILL_EXEC_PATH $MILL_FIRST_ARG -D "mill.main.cli=${MILL_MAIN_CLI}" "$@" diff --git a/out/API/allScalacOptions.json b/out/API/allScalacOptions.json new file mode 100644 index 0000000..f6d87cd --- /dev/null +++ b/out/API/allScalacOptions.json @@ -0,0 +1,7 @@ +{ + "value": [ + + ], + "valueHash": 473519988, + "inputsHash": -2087946531 +} \ No newline at end of file diff --git a/out/API/allSourceFiles.json b/out/API/allSourceFiles.json new file mode 100644 index 0000000..a6d0980 --- /dev/null +++ b/out/API/allSourceFiles.json @@ -0,0 +1,9 @@ +{ + "value": [ + "ref:43882227:/home/maxime/Projects/IdeaProjects/Tactique-Basket-Backend/API/src/org/tbasket/api/Endpoint.scala", + "ref:d2f14845:/home/maxime/Projects/IdeaProjects/Tactique-Basket-Backend/API/src/org/tbasket/api/APIException.scala", + "ref:48e37309:/home/maxime/Projects/IdeaProjects/Tactique-Basket-Backend/API/src/org/tbasket/api/compute/APIRequestHandler.scala" + ], + "valueHash": 1005516331, + "inputsHash": -2048058361 +} \ No newline at end of file diff --git a/out/API/allSources.json b/out/API/allSources.json new file mode 100644 index 0000000..bb60156 --- /dev/null +++ b/out/API/allSources.json @@ -0,0 +1,7 @@ +{ + "value": [ + "ref:f4ab4dc0:/home/maxime/Projects/IdeaProjects/Tactique-Basket-Backend/API/src" + ], + "valueHash": -909178762, + "inputsHash": 1509044708 +} \ No newline at end of file diff --git a/out/API/compile.log b/out/API/compile.log new file mode 100644 index 0000000..5679fab --- /dev/null +++ b/out/API/compile.log @@ -0,0 +1,20 @@ +[info] compiling 3 Scala sources to /home/maxime/Projects/IdeaProjects/Tactique-Basket-Backend/out/API/compile.dest/classes ... +zio.http.Request + +[error] -- Error: /home/maxime/Projects/IdeaProjects/Tactique-Basket-Backend/API/src/org/tbasket/api/Endpoint.scala:50:21  +[error] 47 | Server.install(app).flatMap { port => +[error] 48 | LOG.info(s"Listening API entries on $port") +[error] 49 | ZIO.never +[error] 50 | }.provideSome(configLayer, Server.live) +[error]  | ^ +[error]  | +[error]  | +[error]  | ──── ZLAYER ERROR ──────────────────────────────────────────────────── +[error]  | +[error]  | Please provide a layer for the following type: +[error]  | +[error]  | 1. zio.http.Request +[error]  |  +[error]  | ────────────────────────────────────────────────────────────────────── +[error]  | +[error] one error found diff --git a/out/API/compileClasspath.json b/out/API/compileClasspath.json new file mode 100644 index 0000000..ee09c27 --- /dev/null +++ b/out/API/compileClasspath.json @@ -0,0 +1,50 @@ +{ + "value": [ + "ref:c984eca8:/home/maxime/Projects/IdeaProjects/Tactique-Basket-Backend/API/resources", + "qref:786864fe:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/dev/zio/zio-http_3/0.0.3/zio-http_3-0.0.3.jar", + "qref:ad6c0293:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-slf4j-impl/2.19.0/log4j-slf4j-impl-2.19.0.jar", + "qref:b5501cbb:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/scala-lang/scala3-library_3/3.2.0/scala3-library_3-3.2.0.jar", + "qref:95c82ffd:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/dev/zio/zio-http-logging_3/0.0.3/zio-http-logging_3-0.0.3.jar", + "qref:f4359597:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/io/netty/netty-codec-http/4.1.82.Final/netty-codec-http-4.1.82.Final.jar", + "qref:be47dde4:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/io/netty/netty-handler-proxy/4.1.82.Final/netty-handler-proxy-4.1.82.Final.jar", + "qref:c42a208a:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/io/netty/netty-transport-native-epoll/4.1.82.Final/netty-transport-native-epoll-4.1.82.Final.jar", + "qref:0f82b946:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/io/netty/netty-transport-native-epoll/4.1.82.Final/netty-transport-native-epoll-4.1.82.Final-linux-x86_64.jar", + "qref:40b13f5d:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/io/netty/netty-transport-native-epoll/4.1.82.Final/netty-transport-native-epoll-4.1.82.Final-linux-aarch_64.jar", + "qref:b29de332:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/io/netty/netty-transport-native-kqueue/4.1.82.Final/netty-transport-native-kqueue-4.1.82.Final.jar", + "qref:a078c663:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/io/netty/netty-transport-native-kqueue/4.1.82.Final/netty-transport-native-kqueue-4.1.82.Final-osx-x86_64.jar", + "qref:6c6216f9:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/io/netty/netty-transport-native-kqueue/4.1.82.Final/netty-transport-native-kqueue-4.1.82.Final-osx-aarch_64.jar", + "qref:3a76b25e:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/dev/zio/zio_3/2.0.3/zio_3-2.0.3.jar", + "qref:3146d8bf:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/dev/zio/zio-streams_3/2.0.3/zio-streams_3-2.0.3.jar", + "qref:fd02770d:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/dev/zio/zio-schema_3/0.2.1/zio-schema_3-0.2.1.jar", + "qref:2fec96f9:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/dev/zio/zio-schema-json_3/0.2.1/zio-schema-json_3-0.2.1.jar", + "qref:c4d72723:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/io/netty/incubator/netty-incubator-transport-native-io_uring/0.0.15.Final/netty-incubator-transport-native-io_uring-0.0.15.Final-linux-x86_64.jar", + "qref:32e5062e:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar", + "qref:b7314c89:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-api/2.19.0/log4j-api-2.19.0.jar", + "qref:d4fc68fd:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-core/2.19.0/log4j-core-2.19.0.jar", + "qref:5c87fdc5:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-library/2.13.8/scala-library-2.13.8.jar", + "qref:141b2b3d:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/io/netty/netty-common/4.1.82.Final/netty-common-4.1.82.Final.jar", + "qref:22aaaca7:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/io/netty/netty-buffer/4.1.82.Final/netty-buffer-4.1.82.Final.jar", + "qref:87d38de6:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/io/netty/netty-transport/4.1.82.Final/netty-transport-4.1.82.Final.jar", + "qref:dfc6650d:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/io/netty/netty-codec/4.1.82.Final/netty-codec-4.1.82.Final.jar", + "qref:71f3a5d9:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/io/netty/netty-handler/4.1.82.Final/netty-handler-4.1.82.Final.jar", + "qref:e5cd026e:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/io/netty/netty-codec-socks/4.1.82.Final/netty-codec-socks-4.1.82.Final.jar", + "qref:32cee56e:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/io/netty/netty-transport-native-unix-common/4.1.82.Final/netty-transport-native-unix-common-4.1.82.Final.jar", + "qref:89ac2f5e:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/io/netty/netty-transport-classes-epoll/4.1.82.Final/netty-transport-classes-epoll-4.1.82.Final.jar", + "qref:1ec3ace8:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/io/netty/netty-transport-classes-kqueue/4.1.82.Final/netty-transport-classes-kqueue-4.1.82.Final.jar", + "qref:2e57b31b:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/dev/zio/zio-internal-macros_3/2.0.3/zio-internal-macros_3-2.0.3.jar", + "qref:de5b15b3:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/dev/zio/zio-stacktracer_3/2.0.3/zio-stacktracer_3-2.0.3.jar", + "qref:b680016c:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/dev/zio/izumi-reflect_3/2.2.0/izumi-reflect_3-2.2.0.jar", + "qref:68a6ff28:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/dev/zio/zio-schema-macros_3/0.2.1/zio-schema-macros_3-0.2.1.jar", + "qref:823114a4:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/dev/zio/zio-prelude_3/1.0.0-RC15/zio-prelude_3-1.0.0-RC15.jar", + "qref:45929e91:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/dev/zio/zio-schema-derivation_3/0.2.1/zio-schema-derivation_3-0.2.1.jar", + "qref:74e08b1b:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/dev/zio/zio-json_3/0.3.0-RC9/zio-json_3-0.3.0-RC9.jar", + "qref:d882e809:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/io/netty/incubator/netty-incubator-transport-classes-io_uring/0.0.15.Final/netty-incubator-transport-classes-io_uring-0.0.15.Final.jar", + "qref:2f06acb1:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/io/netty/netty-resolver/4.1.82.Final/netty-resolver-4.1.82.Final.jar", + "qref:fca49b5e:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/dev/zio/izumi-reflect-thirdparty-boopickle-shaded_3/2.2.0/izumi-reflect-thirdparty-boopickle-shaded_3-2.2.0.jar", + "qref:1be77ffe:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/dev/zio/zio-prelude-macros_3/1.0.0-RC15/zio-prelude-macros_3-1.0.0-RC15.jar", + "qref:50fa8563:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_3/2.5.0/scala-collection-compat_3-2.5.0.jar", + "qref:07d971d9:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/com/softwaremill/magnolia1_3/magnolia_3/1.0.0/magnolia_3-1.0.0.jar" + ], + "valueHash": -324318276, + "inputsHash": 1427231108 +} \ No newline at end of file diff --git a/out/API/compileIvyDeps.json b/out/API/compileIvyDeps.json new file mode 100644 index 0000000..8a04a54 --- /dev/null +++ b/out/API/compileIvyDeps.json @@ -0,0 +1,7 @@ +{ + "value": [ + + ], + "valueHash": 0, + "inputsHash": -400702942 +} \ No newline at end of file diff --git a/out/API/enablePluginScalacOptions.json b/out/API/enablePluginScalacOptions.json new file mode 100644 index 0000000..7b59ca6 --- /dev/null +++ b/out/API/enablePluginScalacOptions.json @@ -0,0 +1,7 @@ +{ + "value": [ + + ], + "valueHash": 473519988, + "inputsHash": 683034953 +} \ No newline at end of file diff --git a/out/API/generatedSources.json b/out/API/generatedSources.json new file mode 100644 index 0000000..6b88816 --- /dev/null +++ b/out/API/generatedSources.json @@ -0,0 +1,7 @@ +{ + "value": [ + + ], + "valueHash": 473519988, + "inputsHash": -400702942 +} \ No newline at end of file diff --git a/out/API/ivyDeps.json b/out/API/ivyDeps.json new file mode 100644 index 0000000..ca560ae --- /dev/null +++ b/out/API/ivyDeps.json @@ -0,0 +1,89 @@ +{ + "value": [ + { + "dep": { + "module": { + "organization": { + "value": "dev.zio" + }, + "name": { + "value": "zio-http" + }, + "attributes": { + + } + }, + "version": "0.0.3", + "configuration": { + "value": "default(compile)" + }, + "minimizedExclusions": { + "data": "coursier.core.MinimizedExclusions.ExcludeNone" + }, + "publication": { + "name": "", + "type": { + "value": "" + }, + "ext": { + "value": "" + }, + "classifier": { + "value": "" + } + }, + "optional": false, + "transitive": true + }, + "cross": { + "$type": "mill.scalalib.CrossVersion.Binary", + "platformed": false + }, + "force": false + }, + { + "dep": { + "module": { + "organization": { + "value": "org.apache.logging.log4j" + }, + "name": { + "value": "log4j-slf4j-impl" + }, + "attributes": { + + } + }, + "version": "2.19.0", + "configuration": { + "value": "default(compile)" + }, + "minimizedExclusions": { + "data": "coursier.core.MinimizedExclusions.ExcludeNone" + }, + "publication": { + "name": "", + "type": { + "value": "" + }, + "ext": { + "value": "" + }, + "classifier": { + "value": "" + } + }, + "optional": false, + "transitive": true + }, + "cross": { + "$type": "mill.scalalib.CrossVersion.Constant", + "value": "", + "platformed": false + }, + "force": false + } + ], + "valueHash": 676738241, + "inputsHash": -400702942 +} \ No newline at end of file diff --git a/out/API/javacOptions.json b/out/API/javacOptions.json new file mode 100644 index 0000000..6b88816 --- /dev/null +++ b/out/API/javacOptions.json @@ -0,0 +1,7 @@ +{ + "value": [ + + ], + "valueHash": 473519988, + "inputsHash": -400702942 +} \ No newline at end of file diff --git a/out/API/mandatoryIvyDeps.json b/out/API/mandatoryIvyDeps.json new file mode 100644 index 0000000..f931a54 --- /dev/null +++ b/out/API/mandatoryIvyDeps.json @@ -0,0 +1,47 @@ +{ + "value": [ + { + "dep": { + "module": { + "organization": { + "value": "org.scala-lang" + }, + "name": { + "value": "scala3-library" + }, + "attributes": { + + } + }, + "version": "3.2.0", + "configuration": { + "value": "default(compile)" + }, + "minimizedExclusions": { + "data": "coursier.core.MinimizedExclusions.ExcludeNone" + }, + "publication": { + "name": "", + "type": { + "value": "" + }, + "ext": { + "value": "" + }, + "classifier": { + "value": "" + } + }, + "optional": false, + "transitive": true + }, + "cross": { + "$type": "mill.scalalib.CrossVersion.Binary", + "platformed": true + }, + "force": true + } + ], + "valueHash": 180912663, + "inputsHash": 1462808018 +} \ No newline at end of file diff --git a/out/API/mandatoryIvyDeps.overridden/mill/scalalib/JavaModule/mandatoryIvyDeps.json b/out/API/mandatoryIvyDeps.overridden/mill/scalalib/JavaModule/mandatoryIvyDeps.json new file mode 100644 index 0000000..8a04a54 --- /dev/null +++ b/out/API/mandatoryIvyDeps.overridden/mill/scalalib/JavaModule/mandatoryIvyDeps.json @@ -0,0 +1,7 @@ +{ + "value": [ + + ], + "valueHash": 0, + "inputsHash": -400702942 +} \ No newline at end of file diff --git a/out/API/mandatoryScalacOptions.json b/out/API/mandatoryScalacOptions.json new file mode 100644 index 0000000..6b88816 --- /dev/null +++ b/out/API/mandatoryScalacOptions.json @@ -0,0 +1,7 @@ +{ + "value": [ + + ], + "valueHash": 473519988, + "inputsHash": -400702942 +} \ No newline at end of file diff --git a/out/API/platformSuffix.json b/out/API/platformSuffix.json new file mode 100644 index 0000000..9073a6a --- /dev/null +++ b/out/API/platformSuffix.json @@ -0,0 +1,5 @@ +{ + "value": "", + "valueHash": 0, + "inputsHash": -400702942 +} \ No newline at end of file diff --git a/out/API/resolvedIvyDeps.json b/out/API/resolvedIvyDeps.json new file mode 100644 index 0000000..b8b327a --- /dev/null +++ b/out/API/resolvedIvyDeps.json @@ -0,0 +1,49 @@ +{ + "value": [ + "qref:786864fe:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/dev/zio/zio-http_3/0.0.3/zio-http_3-0.0.3.jar", + "qref:ad6c0293:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-slf4j-impl/2.19.0/log4j-slf4j-impl-2.19.0.jar", + "qref:b5501cbb:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/scala-lang/scala3-library_3/3.2.0/scala3-library_3-3.2.0.jar", + "qref:95c82ffd:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/dev/zio/zio-http-logging_3/0.0.3/zio-http-logging_3-0.0.3.jar", + "qref:f4359597:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/io/netty/netty-codec-http/4.1.82.Final/netty-codec-http-4.1.82.Final.jar", + "qref:be47dde4:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/io/netty/netty-handler-proxy/4.1.82.Final/netty-handler-proxy-4.1.82.Final.jar", + "qref:c42a208a:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/io/netty/netty-transport-native-epoll/4.1.82.Final/netty-transport-native-epoll-4.1.82.Final.jar", + "qref:0f82b946:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/io/netty/netty-transport-native-epoll/4.1.82.Final/netty-transport-native-epoll-4.1.82.Final-linux-x86_64.jar", + "qref:40b13f5d:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/io/netty/netty-transport-native-epoll/4.1.82.Final/netty-transport-native-epoll-4.1.82.Final-linux-aarch_64.jar", + "qref:b29de332:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/io/netty/netty-transport-native-kqueue/4.1.82.Final/netty-transport-native-kqueue-4.1.82.Final.jar", + "qref:a078c663:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/io/netty/netty-transport-native-kqueue/4.1.82.Final/netty-transport-native-kqueue-4.1.82.Final-osx-x86_64.jar", + "qref:6c6216f9:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/io/netty/netty-transport-native-kqueue/4.1.82.Final/netty-transport-native-kqueue-4.1.82.Final-osx-aarch_64.jar", + "qref:3a76b25e:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/dev/zio/zio_3/2.0.3/zio_3-2.0.3.jar", + "qref:3146d8bf:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/dev/zio/zio-streams_3/2.0.3/zio-streams_3-2.0.3.jar", + "qref:fd02770d:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/dev/zio/zio-schema_3/0.2.1/zio-schema_3-0.2.1.jar", + "qref:2fec96f9:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/dev/zio/zio-schema-json_3/0.2.1/zio-schema-json_3-0.2.1.jar", + "qref:c4d72723:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/io/netty/incubator/netty-incubator-transport-native-io_uring/0.0.15.Final/netty-incubator-transport-native-io_uring-0.0.15.Final-linux-x86_64.jar", + "qref:32e5062e:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar", + "qref:b7314c89:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-api/2.19.0/log4j-api-2.19.0.jar", + "qref:d4fc68fd:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-core/2.19.0/log4j-core-2.19.0.jar", + "qref:5c87fdc5:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-library/2.13.8/scala-library-2.13.8.jar", + "qref:141b2b3d:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/io/netty/netty-common/4.1.82.Final/netty-common-4.1.82.Final.jar", + "qref:22aaaca7:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/io/netty/netty-buffer/4.1.82.Final/netty-buffer-4.1.82.Final.jar", + "qref:87d38de6:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/io/netty/netty-transport/4.1.82.Final/netty-transport-4.1.82.Final.jar", + "qref:dfc6650d:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/io/netty/netty-codec/4.1.82.Final/netty-codec-4.1.82.Final.jar", + "qref:71f3a5d9:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/io/netty/netty-handler/4.1.82.Final/netty-handler-4.1.82.Final.jar", + "qref:e5cd026e:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/io/netty/netty-codec-socks/4.1.82.Final/netty-codec-socks-4.1.82.Final.jar", + "qref:32cee56e:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/io/netty/netty-transport-native-unix-common/4.1.82.Final/netty-transport-native-unix-common-4.1.82.Final.jar", + "qref:89ac2f5e:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/io/netty/netty-transport-classes-epoll/4.1.82.Final/netty-transport-classes-epoll-4.1.82.Final.jar", + "qref:1ec3ace8:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/io/netty/netty-transport-classes-kqueue/4.1.82.Final/netty-transport-classes-kqueue-4.1.82.Final.jar", + "qref:2e57b31b:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/dev/zio/zio-internal-macros_3/2.0.3/zio-internal-macros_3-2.0.3.jar", + "qref:de5b15b3:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/dev/zio/zio-stacktracer_3/2.0.3/zio-stacktracer_3-2.0.3.jar", + "qref:b680016c:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/dev/zio/izumi-reflect_3/2.2.0/izumi-reflect_3-2.2.0.jar", + "qref:68a6ff28:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/dev/zio/zio-schema-macros_3/0.2.1/zio-schema-macros_3-0.2.1.jar", + "qref:823114a4:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/dev/zio/zio-prelude_3/1.0.0-RC15/zio-prelude_3-1.0.0-RC15.jar", + "qref:45929e91:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/dev/zio/zio-schema-derivation_3/0.2.1/zio-schema-derivation_3-0.2.1.jar", + "qref:74e08b1b:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/dev/zio/zio-json_3/0.3.0-RC9/zio-json_3-0.3.0-RC9.jar", + "qref:d882e809:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/io/netty/incubator/netty-incubator-transport-classes-io_uring/0.0.15.Final/netty-incubator-transport-classes-io_uring-0.0.15.Final.jar", + "qref:2f06acb1:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/io/netty/netty-resolver/4.1.82.Final/netty-resolver-4.1.82.Final.jar", + "qref:fca49b5e:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/dev/zio/izumi-reflect-thirdparty-boopickle-shaded_3/2.2.0/izumi-reflect-thirdparty-boopickle-shaded_3-2.2.0.jar", + "qref:1be77ffe:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/dev/zio/zio-prelude-macros_3/1.0.0-RC15/zio-prelude-macros_3-1.0.0-RC15.jar", + "qref:50fa8563:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_3/2.5.0/scala-collection-compat_3-2.5.0.jar", + "qref:07d971d9:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/com/softwaremill/magnolia1_3/magnolia_3/1.0.0/magnolia_3-1.0.0.jar" + ], + "valueHash": 589717268, + "inputsHash": -960795727 +} \ No newline at end of file diff --git a/out/API/resources.json b/out/API/resources.json new file mode 100644 index 0000000..3cb1755 --- /dev/null +++ b/out/API/resources.json @@ -0,0 +1,7 @@ +{ + "value": [ + "ref:c984eca8:/home/maxime/Projects/IdeaProjects/Tactique-Basket-Backend/API/resources" + ], + "valueHash": 2031791312, + "inputsHash": -191497303 +} \ No newline at end of file diff --git a/out/API/scalaCompilerClasspath.json b/out/API/scalaCompilerClasspath.json new file mode 100644 index 0000000..23ac7c7 --- /dev/null +++ b/out/API/scalaCompilerClasspath.json @@ -0,0 +1,19 @@ +{ + "value": [ + "qref:eb697b22:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/scala-lang/scala3-compiler_3/3.2.0/scala3-compiler_3-3.2.0.jar", + "qref:b5501cbb:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/scala-lang/scala3-library_3/3.2.0/scala3-library_3-3.2.0.jar", + "qref:73480977:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/scala-lang/scala3-interfaces/3.2.0/scala3-interfaces-3.2.0.jar", + "qref:0ea911d6:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/scala-lang/tasty-core_3/3.2.0/tasty-core_3-3.2.0.jar", + "qref:cdcf370e:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-asm/9.3.0-scala-1/scala-asm-9.3.0-scala-1.jar", + "qref:fba66b0c:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.3.5/compiler-interface-1.3.5.jar", + "qref:2a9328bf:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/jline/jline-reader/3.19.0/jline-reader-3.19.0.jar", + "qref:efa015df:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal/3.19.0/jline-terminal-3.19.0.jar", + "qref:68f8c4d6:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal-jna/3.19.0/jline-terminal-jna-3.19.0.jar", + "qref:5c87fdc5:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-library/2.13.8/scala-library-2.13.8.jar", + "qref:b6bb4c3d:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.7.0/protobuf-java-3.7.0.jar", + "qref:26123a6a:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.3.0/util-interface-1.3.0.jar", + "qref:84bac27c:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna/5.3.1/jna-5.3.1.jar" + ], + "valueHash": 761044896, + "inputsHash": 866108943 +} \ No newline at end of file diff --git a/out/API/scalaLibraryIvyDeps.json b/out/API/scalaLibraryIvyDeps.json new file mode 100644 index 0000000..71029a7 --- /dev/null +++ b/out/API/scalaLibraryIvyDeps.json @@ -0,0 +1,47 @@ +{ + "value": [ + { + "dep": { + "module": { + "organization": { + "value": "org.scala-lang" + }, + "name": { + "value": "scala3-library" + }, + "attributes": { + + } + }, + "version": "3.2.0", + "configuration": { + "value": "default(compile)" + }, + "minimizedExclusions": { + "data": "coursier.core.MinimizedExclusions.ExcludeNone" + }, + "publication": { + "name": "", + "type": { + "value": "" + }, + "ext": { + "value": "" + }, + "classifier": { + "value": "" + } + }, + "optional": false, + "transitive": true + }, + "cross": { + "$type": "mill.scalalib.CrossVersion.Binary", + "platformed": true + }, + "force": true + } + ], + "valueHash": 180912663, + "inputsHash": -143185017 +} \ No newline at end of file diff --git a/out/API/scalaOrganization.json b/out/API/scalaOrganization.json new file mode 100644 index 0000000..d095f81 --- /dev/null +++ b/out/API/scalaOrganization.json @@ -0,0 +1,5 @@ +{ + "value": "org.scala-lang", + "valueHash": 1747943263, + "inputsHash": 1046496917 +} \ No newline at end of file diff --git a/out/API/scalaVersion.json b/out/API/scalaVersion.json new file mode 100644 index 0000000..d3599c3 --- /dev/null +++ b/out/API/scalaVersion.json @@ -0,0 +1,5 @@ +{ + "value": "3.2.0", + "valueHash": 48519481, + "inputsHash": -400702942 +} \ No newline at end of file diff --git a/out/API/scalacOptions.json b/out/API/scalacOptions.json new file mode 100644 index 0000000..6b88816 --- /dev/null +++ b/out/API/scalacOptions.json @@ -0,0 +1,7 @@ +{ + "value": [ + + ], + "valueHash": 473519988, + "inputsHash": -400702942 +} \ No newline at end of file diff --git a/out/API/scalacPluginClasspath.json b/out/API/scalacPluginClasspath.json new file mode 100644 index 0000000..c801420 --- /dev/null +++ b/out/API/scalacPluginClasspath.json @@ -0,0 +1,7 @@ +{ + "value": [ + + ], + "valueHash": 0, + "inputsHash": -1537599939 +} \ No newline at end of file diff --git a/out/API/scalacPluginIvyDeps.json b/out/API/scalacPluginIvyDeps.json new file mode 100644 index 0000000..8a04a54 --- /dev/null +++ b/out/API/scalacPluginIvyDeps.json @@ -0,0 +1,7 @@ +{ + "value": [ + + ], + "valueHash": 0, + "inputsHash": -400702942 +} \ No newline at end of file diff --git a/out/API/sources.json b/out/API/sources.json new file mode 100644 index 0000000..6d17b7e --- /dev/null +++ b/out/API/sources.json @@ -0,0 +1,7 @@ +{ + "value": [ + "ref:f4ab4dc0:/home/maxime/Projects/IdeaProjects/Tactique-Basket-Backend/API/src" + ], + "valueHash": -909178762, + "inputsHash": 729607789 +} \ No newline at end of file diff --git a/out/API/transitiveCompileIvyDeps.json b/out/API/transitiveCompileIvyDeps.json new file mode 100644 index 0000000..524bca9 --- /dev/null +++ b/out/API/transitiveCompileIvyDeps.json @@ -0,0 +1,7 @@ +{ + "value": [ + + ], + "valueHash": 0, + "inputsHash": 360878554 +} \ No newline at end of file diff --git a/out/API/transitiveIvyDeps.json b/out/API/transitiveIvyDeps.json new file mode 100644 index 0000000..356ff18 --- /dev/null +++ b/out/API/transitiveIvyDeps.json @@ -0,0 +1,130 @@ +{ + "value": [ + { + "dep": { + "module": { + "organization": { + "value": "dev.zio" + }, + "name": { + "value": "zio-http" + }, + "attributes": { + + } + }, + "version": "0.0.3", + "configuration": { + "value": "default(compile)" + }, + "minimizedExclusions": { + "data": "coursier.core.MinimizedExclusions.ExcludeNone" + }, + "publication": { + "name": "", + "type": { + "value": "" + }, + "ext": { + "value": "" + }, + "classifier": { + "value": "" + } + }, + "optional": false, + "transitive": true + }, + "cross": { + "$type": "mill.scalalib.CrossVersion.Binary", + "platformed": false + }, + "force": false + }, + { + "dep": { + "module": { + "organization": { + "value": "org.apache.logging.log4j" + }, + "name": { + "value": "log4j-slf4j-impl" + }, + "attributes": { + + } + }, + "version": "2.19.0", + "configuration": { + "value": "default(compile)" + }, + "minimizedExclusions": { + "data": "coursier.core.MinimizedExclusions.ExcludeNone" + }, + "publication": { + "name": "", + "type": { + "value": "" + }, + "ext": { + "value": "" + }, + "classifier": { + "value": "" + } + }, + "optional": false, + "transitive": true + }, + "cross": { + "$type": "mill.scalalib.CrossVersion.Constant", + "value": "", + "platformed": false + }, + "force": false + }, + { + "dep": { + "module": { + "organization": { + "value": "org.scala-lang" + }, + "name": { + "value": "scala3-library" + }, + "attributes": { + + } + }, + "version": "3.2.0", + "configuration": { + "value": "default(compile)" + }, + "minimizedExclusions": { + "data": "coursier.core.MinimizedExclusions.ExcludeNone" + }, + "publication": { + "name": "", + "type": { + "value": "" + }, + "ext": { + "value": "" + }, + "classifier": { + "value": "" + } + }, + "optional": false, + "transitive": true + }, + "cross": { + "$type": "mill.scalalib.CrossVersion.Binary", + "platformed": true + }, + "force": true + } + ], + "valueHash": 857650904, + "inputsHash": 277656819 +} \ No newline at end of file diff --git a/out/API/transitiveLocalClasspath.json b/out/API/transitiveLocalClasspath.json new file mode 100644 index 0000000..8a04a54 --- /dev/null +++ b/out/API/transitiveLocalClasspath.json @@ -0,0 +1,7 @@ +{ + "value": [ + + ], + "valueHash": 0, + "inputsHash": -400702942 +} \ No newline at end of file diff --git a/out/API/unmanagedClasspath.json b/out/API/unmanagedClasspath.json new file mode 100644 index 0000000..8a04a54 --- /dev/null +++ b/out/API/unmanagedClasspath.json @@ -0,0 +1,7 @@ +{ + "value": [ + + ], + "valueHash": 0, + "inputsHash": -400702942 +} \ No newline at end of file diff --git a/out/API/upstreamCompileOutput.json b/out/API/upstreamCompileOutput.json new file mode 100644 index 0000000..6b88816 --- /dev/null +++ b/out/API/upstreamCompileOutput.json @@ -0,0 +1,7 @@ +{ + "value": [ + + ], + "valueHash": 473519988, + "inputsHash": -400702942 +} \ No newline at end of file diff --git a/out/mill-profile.json b/out/mill-profile.json new file mode 100644 index 0000000..221b6b9 --- /dev/null +++ b/out/mill-profile.json @@ -0,0 +1,162 @@ +[ + { + "label": "API.scalaVersion", + "millis": 8, + "cached": false + }, + { + "label": "mill.scalalib.ZincWorkerModule.classpath", + "millis": 11, + "cached": true + }, + { + "label": "mill.scalalib.ZincWorkerModule.zincLogDebug", + "millis": 2, + "cached": false + }, + { + "label": "mill.scalalib.ZincWorkerModule.worker", + "millis": 32, + "cached": false + }, + { + "label": "API.upstreamCompileOutput", + "millis": 3, + "cached": false + }, + { + "label": "API.sources", + "millis": 6, + "cached": false + }, + { + "label": "API.generatedSources", + "millis": 3, + "cached": false + }, + { + "label": "API.allSources", + "millis": 2, + "cached": false + }, + { + "label": "API.allSourceFiles", + "millis": 15, + "cached": false + }, + { + "label": "API.transitiveLocalClasspath", + "millis": 6, + "cached": false + }, + { + "label": "API.resources", + "millis": 3, + "cached": false + }, + { + "label": "API.unmanagedClasspath", + "millis": 4, + "cached": false + }, + { + "label": "API.platformSuffix", + "millis": 2, + "cached": false + }, + { + "label": "API.compileIvyDeps", + "millis": 4, + "cached": false + }, + { + "label": "API.transitiveCompileIvyDeps", + "millis": 9, + "cached": false + }, + { + "label": "API.ivyDeps", + "millis": 12, + "cached": false + }, + { + "label": "API.mandatoryIvyDeps.overridden.mill.scalalib.JavaModule.mandatoryIvyDeps", + "millis": 5, + "cached": false + }, + { + "label": "API.scalaOrganization", + "millis": 2, + "cached": false + }, + { + "label": "API.scalaLibraryIvyDeps", + "millis": 11, + "cached": false + }, + { + "label": "API.mandatoryIvyDeps", + "millis": 4, + "cached": false + }, + { + "label": "API.transitiveIvyDeps", + "millis": 5, + "cached": false + }, + { + "label": "API.resolvedIvyDeps", + "millis": 417, + "cached": false + }, + { + "label": "API.compileClasspath", + "millis": 4, + "cached": false + }, + { + "label": "API.javacOptions", + "millis": 3, + "cached": false + }, + { + "label": "API.mandatoryScalacOptions", + "millis": 2, + "cached": false + }, + { + "label": "API.scalacPluginIvyDeps", + "millis": 3, + "cached": false + }, + { + "label": "API.enablePluginScalacOptions", + "millis": 4, + "cached": false + }, + { + "label": "API.scalacOptions", + "millis": 3, + "cached": false + }, + { + "label": "API.allScalacOptions", + "millis": 3, + "cached": false + }, + { + "label": "API.scalaCompilerClasspath", + "millis": 89, + "cached": false + }, + { + "label": "API.scalacPluginClasspath", + "millis": 8, + "cached": false + }, + { + "label": "API.compile", + "millis": 5295, + "cached": false + } +] \ No newline at end of file diff --git a/out/mill-worker-y2qcfUvGGN7i9KB/V+MechJ414E=-1/clientLock b/out/mill-worker-y2qcfUvGGN7i9KB/V+MechJ414E=-1/clientLock new file mode 100644 index 0000000..e69de29 diff --git a/out/mill-worker-y2qcfUvGGN7i9KB/V+MechJ414E=-1/exitCode b/out/mill-worker-y2qcfUvGGN7i9KB/V+MechJ414E=-1/exitCode new file mode 100644 index 0000000..56a6051 --- /dev/null +++ b/out/mill-worker-y2qcfUvGGN7i9KB/V+MechJ414E=-1/exitCode @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/out/mill-worker-y2qcfUvGGN7i9KB/V+MechJ414E=-1/pid b/out/mill-worker-y2qcfUvGGN7i9KB/V+MechJ414E=-1/pid new file mode 100644 index 0000000..e69de29 diff --git a/out/mill-worker-y2qcfUvGGN7i9KB/V+MechJ414E=-1/run b/out/mill-worker-y2qcfUvGGN7i9KB/V+MechJ414E=-1/run new file mode 100644 index 0000000..275f5dd Binary files /dev/null and b/out/mill-worker-y2qcfUvGGN7i9KB/V+MechJ414E=-1/run differ diff --git a/out/mill-worker-y2qcfUvGGN7i9KB/V+MechJ414E=-1/serverLock b/out/mill-worker-y2qcfUvGGN7i9KB/V+MechJ414E=-1/serverLock new file mode 100644 index 0000000..e69de29 diff --git a/out/mill-worker-y2qcfUvGGN7i9KB/V+MechJ414E=-1/stderr b/out/mill-worker-y2qcfUvGGN7i9KB/V+MechJ414E=-1/stderr new file mode 100644 index 0000000..e69de29 diff --git a/out/mill-worker-y2qcfUvGGN7i9KB/V+MechJ414E=-1/stdout b/out/mill-worker-y2qcfUvGGN7i9KB/V+MechJ414E=-1/stdout new file mode 100644 index 0000000..e69de29 diff --git a/out/mill/scalalib/ZincWorkerModule/classpath.json b/out/mill/scalalib/ZincWorkerModule/classpath.json new file mode 100644 index 0000000..14e6cb9 --- /dev/null +++ b/out/mill/scalalib/ZincWorkerModule/classpath.json @@ -0,0 +1,60 @@ +{ + "value": [ + "qref:7839bc45:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/com/lihaoyi/mill-scalalib-worker_2.13/0.10.9/mill-scalalib-worker_2.13-0.10.9.jar", + "qref:b4707e5e:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc_2.13/1.7.2/zinc_2.13-1.7.2.jar", + "qref:d4fc68fd:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-core/2.19.0/log4j-core-2.19.0.jar", + "qref:be374be5:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-library/2.13.10/scala-library-2.13.10.jar", + "qref:97f243c4:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/com/lihaoyi/mill-scalalib-api_2.13/0.10.9/mill-scalalib-api_2.13-0.10.9.jar", + "qref:faad4aad:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.13/1.7.2/zinc-core_2.13-1.7.2.jar", + "qref:439d2d82:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.13/1.7.2/zinc-persist_2.13-1.7.2.jar", + "qref:986e82e9:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2.13/1.7.2/zinc-compile-core_2.13-1.7.2.jar", + "qref:c542e4c1:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.13/1.7.2/zinc-classfile_2.13-1.7.2.jar", + "qref:b7314c89:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-api/2.19.0/log4j-api-2.19.0.jar", + "qref:ca65b12c:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/com/lihaoyi/mill-main-api_2.13/0.10.9/mill-main-api_2.13-0.10.9.jar", + "qref:f4e464b5:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.13/1.7.2/zinc-apiinfo_2.13-1.7.2.jar", + "qref:9757423a:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.13/1.7.2/zinc-classpath_2.13-1.7.2.jar", + "qref:69d32154:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.7.2/compiler-interface-1.7.2.jar", + "qref:548401c0:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist-core-assembly/1.7.2/zinc-persist-core-assembly-1.7.2.jar", + "qref:6d450c65:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-parallel-collections_2.13/0.2.0/scala-parallel-collections_2.13-0.2.0.jar", + "qref:d2cf96a5:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/io_2.13/1.7.0/io_2.13-1.7.0.jar", + "qref:fbe9d9e6:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-logging_2.13/1.7.2/util-logging_2.13-1.7.2.jar", + "qref:815d62df:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-relation_2.13/1.7.2/util-relation_2.13-1.7.2.jar", + "qref:f3bb81cb:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbinary_2.13/0.5.1/sbinary_2.13-0.5.1.jar", + "qref:e7a19f5f:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/launcher-interface/1.3.3/launcher-interface-1.3.3.jar", + "qref:0aa23ae8:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.13/1.1.2/scala-parser-combinators_2.13-1.1.2.jar", + "qref:863c81d2:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/net/openhft/zero-allocation-hashing/0.10.1/zero-allocation-hashing-0.10.1.jar", + "qref:465db4fa:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-control_2.13/1.7.2/util-control_2.13-1.7.2.jar", + "qref:45680392:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/com/lihaoyi/os-lib_2.13/0.8.1/os-lib_2.13-0.8.1.jar", + "qref:146da587:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/com/lihaoyi/upickle_2.13/2.0.0/upickle_2.13-2.0.0.jar", + "qref:587c4883:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/test-interface-1.0.jar", + "qref:3e62008d:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.13/1.7.2/compiler-bridge_2.13-1.7.2.jar", + "qref:19ebc0b2:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.13.8/scala-compiler-2.13.8.jar", + "qref:b322eca4:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.7.2/util-interface-1.7.2.jar", + "qref:3327f3e7:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.9/file-tree-views-2.1.9.jar", + "qref:0149edc1:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna/5.12.0/jna-5.12.0.jar", + "qref:5c7dae5c:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna-platform/5.12.0/jna-platform-5.12.0.jar", + "qref:208dee14:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/collections_2.13/1.7.2/collections_2.13-1.7.2.jar", + "qref:26f82c17:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/core-macros_2.13/1.7.2/core-macros_2.13-1.7.2.jar", + "qref:d32f2150:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.13/0.9.1/sjson-new-core_2.13-0.9.1.jar", + "qref:7d0bbc63:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/jline/jline/2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493/jline-2.14.7-sbt-a1b0ffbb8f64bb820f4f84a0c07a0c0964507493.jar", + "qref:efa015df:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal/3.19.0/jline-terminal-3.19.0.jar", + "qref:68f8c4d6:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal-jna/3.19.0/jline-terminal-jna-3.19.0.jar", + "qref:cf1f1789:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/jline/jline-terminal-jansi/3.19.0/jline-terminal-jansi-3.19.0.jar", + "qref:af8c5653:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/com/lmax/disruptor/3.4.2/disruptor-3.4.2.jar", + "qref:10858161:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-scalajson_2.13/0.9.1/sjson-new-scalajson_2.13-0.9.1.jar", + "qref:8c9bc356:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.13.8/scala-reflect-2.13.8.jar", + "qref:04118976:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.13/1.2.0/scala-xml_2.13-1.2.0.jar", + "qref:6f283044:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/com/lihaoyi/geny_2.13/0.7.1/geny_2.13-0.7.1.jar", + "qref:84541390:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/com/lihaoyi/ujson_2.13/2.0.0/ujson_2.13-2.0.0.jar", + "qref:beec32c1:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/com/lihaoyi/upack_2.13/2.0.0/upack_2.13-2.0.0.jar", + "qref:2e07f0cc:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/com/lihaoyi/upickle-implicits_2.13/2.0.0/upickle-implicits_2.13-2.0.0.jar", + "qref:8ca67528:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/jline/jline/3.21.0/jline-3.21.0.jar", + "qref:bad9a727:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-position_2.13/1.7.2/util-position_2.13-1.7.2.jar", + "qref:0eb7ebf3:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/org/fusesource/jansi/jansi/2.1.0/jansi-2.1.0.jar", + "qref:fc6ae660:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-jawn-parser_2.13/0.9.1/shaded-jawn-parser_2.13-0.9.1.jar", + "qref:54eac227:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-scalajson_2.13/1.0.0-M4/shaded-scalajson_2.13-1.0.0-M4.jar", + "qref:a32ffbe7:/home/maxime/.cache/coursier/v1/https/repo1.maven.org/maven2/com/lihaoyi/upickle-core_2.13/2.0.0/upickle-core_2.13-2.0.0.jar" + ], + "valueHash": -1174167625, + "inputsHash": 1720212604 +} \ No newline at end of file diff --git a/out/mill/scalalib/ZincWorkerModule/zincLogDebug.json b/out/mill/scalalib/ZincWorkerModule/zincLogDebug.json new file mode 100644 index 0000000..bf05cb8 --- /dev/null +++ b/out/mill/scalalib/ZincWorkerModule/zincLogDebug.json @@ -0,0 +1,5 @@ +{ + "value": false, + "valueHash": 1237, + "inputsHash": 1235143004 +} \ No newline at end of file diff --git a/settings.gradle b/settings.gradle deleted file mode 100644 index a490aca..0000000 --- a/settings.gradle +++ /dev/null @@ -1,4 +0,0 @@ -rootProject.name = 'Tactique-Basket-Backend' -include 'DB' -include 'API' - diff --git a/src/main/resources/log4j2.xml b/src/main/resources/log4j2.xml deleted file mode 100644 index 5abd931..0000000 --- a/src/main/resources/log4j2.xml +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/main/resources/server.properties b/src/main/resources/server.properties deleted file mode 100644 index aea62c7..0000000 --- a/src/main/resources/server.properties +++ /dev/null @@ -1 +0,0 @@ -endpoint.port=48485 \ No newline at end of file