plugins {
    id 'buildlogic.java-library-conventions'
}

description = 'Monopoly common model'

dependencies {
    api project(":common")
    api libs.jme3.networking
    testImplementation libs.mockito.core

    testImplementation project(":monopoly:client")
    testImplementation project(":monopoly:model")
    testImplementation project(":monopoly:server")
}