Skip to content
Snippets Groups Projects
build.gradle 958 B
Newer Older
/*
 * This file was generated by the Gradle 'init' task.
 *
 * This generated file contains a sample Java project to get you started.
 * For more details take a look at the Java Quickstart chapter in the Gradle
 * User Manual available at https://docs.gradle.org/6.5/userguide/tutorial_java_projects.html
 */

plugins {
    id 'java'
    id 'application'
}

dependencies {
    implementation project(':common')
    implementation project(':analysis')
    // https://mvnrepository.com/artifact/org.eclipse.emf/org.eclipse.emf.ecore
    implementation 'org.eclipse.emf:org.eclipse.emf.ecore:2.23.0'
//    runtime 'org.eclipse.emf:org.eclipse.emf.ecore:2.23.0'
    implementation 'com.fasterxml.jackson.core:jackson-databind:2.12.0'
    
    implementation 'jakarta.xml.bind:jakarta.xml.bind-api:2.3.3'
    implementation 'com.sun.xml.bind:jaxb-impl:2.3.3'    
}

application {
    mainClassName = 'org.oceandsl.architecture.model.ArchitectureModelMain'
}