mill and scala 3 migration
continuous-integration/drone/push Build is failing Details

drone-setup
Override-6 2 years ago
parent 27b808abe3
commit 8c6eac8d94

@ -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"
}

@ -53,5 +53,4 @@ class Endpoint(port: Int) {
object Endpoint { object Endpoint {
final val LOG = LogManager.getLogger("API") final val LOG = LogManager.getLogger("API")
} }

@ -4,7 +4,7 @@ import org.tbasket.api.compute.APIRequestHandler
import org.tbasket.db.Database.ctx._ import org.tbasket.db.Database.ctx._
import org.tbasket.db.schemas.User import org.tbasket.db.schemas.User
import org.tbasket.session.UserSessionHandler import org.tbasket.session.UserSessionHandler
import zio.ZIO import zio.{ZEnvironment, ZIO}
import zio.http.model.{Cookie, Headers, Status} import zio.http.model.{Cookie, Headers, Status}
import zio.http.{Request, Response} import zio.http.{Request, Response}
import zio.json._ import zio.json._

@ -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'
}

@ -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"
}
}

@ -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"
)
}

Binary file not shown.

@ -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

234
gradlew vendored

@ -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" "$@"

89
gradlew.bat vendored

@ -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

65
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}" "$@"

@ -0,0 +1,7 @@
{
"value": [
],
"valueHash": 473519988,
"inputsHash": -2087946531
}

@ -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
}

@ -0,0 +1,7 @@
{
"value": [
"ref:f4ab4dc0:/home/maxime/Projects/IdeaProjects/Tactique-Basket-Backend/API/src"
],
"valueHash": -909178762,
"inputsHash": 1509044708
}

@ -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

@ -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
}

@ -0,0 +1,7 @@
{
"value": [
],
"valueHash": 0,
"inputsHash": -400702942
}

@ -0,0 +1,7 @@
{
"value": [
],
"valueHash": 473519988,
"inputsHash": 683034953
}

@ -0,0 +1,7 @@
{
"value": [
],
"valueHash": 473519988,
"inputsHash": -400702942
}

@ -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
}

@ -0,0 +1,7 @@
{
"value": [
],
"valueHash": 473519988,
"inputsHash": -400702942
}

@ -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
}

@ -0,0 +1,7 @@
{
"value": [
],
"valueHash": 0,
"inputsHash": -400702942
}

@ -0,0 +1,7 @@
{
"value": [
],
"valueHash": 473519988,
"inputsHash": -400702942
}

@ -0,0 +1,5 @@
{
"value": "",
"valueHash": 0,
"inputsHash": -400702942
}

@ -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
}

@ -0,0 +1,7 @@
{
"value": [
"ref:c984eca8:/home/maxime/Projects/IdeaProjects/Tactique-Basket-Backend/API/resources"
],
"valueHash": 2031791312,
"inputsHash": -191497303
}

@ -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
}

@ -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
}

@ -0,0 +1,5 @@
{
"value": "org.scala-lang",
"valueHash": 1747943263,
"inputsHash": 1046496917
}

@ -0,0 +1,5 @@
{
"value": "3.2.0",
"valueHash": 48519481,
"inputsHash": -400702942
}

@ -0,0 +1,7 @@
{
"value": [
],
"valueHash": 473519988,
"inputsHash": -400702942
}

@ -0,0 +1,7 @@
{
"value": [
],
"valueHash": 0,
"inputsHash": -1537599939
}

@ -0,0 +1,7 @@
{
"value": [
],
"valueHash": 0,
"inputsHash": -400702942
}

@ -0,0 +1,7 @@
{
"value": [
"ref:f4ab4dc0:/home/maxime/Projects/IdeaProjects/Tactique-Basket-Backend/API/src"
],
"valueHash": -909178762,
"inputsHash": 729607789
}

@ -0,0 +1,7 @@
{
"value": [
],
"valueHash": 0,
"inputsHash": 360878554
}

@ -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
}

@ -0,0 +1,7 @@
{
"value": [
],
"valueHash": 0,
"inputsHash": -400702942
}

@ -0,0 +1,7 @@
{
"value": [
],
"valueHash": 0,
"inputsHash": -400702942
}

@ -0,0 +1,7 @@
{
"value": [
],
"valueHash": 473519988,
"inputsHash": -400702942
}

@ -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
}
]

@ -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
}

@ -0,0 +1,5 @@
{
"value": false,
"valueHash": 1237,
"inputsHash": 1235143004
}

@ -1,4 +0,0 @@
rootProject.name = 'Tactique-Basket-Backend'
include 'DB'
include 'API'

@ -1,40 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<Configuration status="WARN">
<Appenders>
<Console name="Console" target="SYSTEM_OUT">
<PatternLayout disableAnsi="false"
pattern="%style{[%d{HH:mm:ss,SSS}]}{magenta} [%highlight{%-5p}{FATAL=red, ERROR=red, WARN=yellow, INFO=blue, DEBUG=green, TRACE=normal} _ %-6logger] %style{-}{normal} %highlight{%m%n}{FATAL=red, ERROR=red, WARN=yellow, INFO=blue, DEBUG=green, TRACE=normal}"/>
</Console>
<RollingFile name="LogFile"
fileName="log/server-current.log"
filePattern="log/archives/server-%d{yyyy-MM-dd}.log"
append="true">
<PatternLayout disableAnsi="false"
pattern="[%d{HH:mm:ss,SSS}] [%-5p _ %-6logger] - %m%n"/>
<Policies>
<TimeBasedTriggeringPolicy/>
</Policies>
</RollingFile>
</Appenders>
<Loggers>
<Logger name="Database" additivity="false" includeLocation="false">
<AppenderRef ref="Console"/>
<AppenderRef ref="LogFile"/>
</Logger>
<Logger name="API" additivity="false" includeLocation="false">
<AppenderRef ref="Console"/>
<AppenderRef ref="LogFile"/>
</Logger>
<Logger name="Core" additivity="false" includeLocation="false">
<AppenderRef ref="Console"/>
<AppenderRef ref="LogFile"/>
</Logger>
<Root level="ALL" includeLocation="false">
<AppenderRef ref="Console"/>
<AppenderRef ref="LogFile"/>
</Root>
</Loggers>
</Configuration>