Skip to main content



      Home
Home » Modeling » TMF (Xtext) » Xtext 2.17.0.M1 is out(We encourage you to test early and give feedback.)
Xtext 2.17.0.M1 is out [message #1801292] Wed, 16 January 2019 03:49
Eclipse UserFriend
Hello Xtext Community

Xtext 2.17.M1 is out. We invite you all to give it a try.
A major change is that we manage our Maven third party dependencies now with a BOM (Bill of Material).
This requires Maven buildscripts to include the BOM in the dependency management section:

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.eclipse.xtext</groupId>
                <artifactId>xtext-dev-bom</artifactId>
                <version>${xtextVersion}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>


In Gradle you can use the spring dependency management plugin for that purpose
buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        ...
        classpath 'io.spring.gradle:dependency-management-plugin:1.0.6.RELEASE'
    }
}

subprojects {
...
    apply plugin: 'io.spring.dependency-management'
    dependencyManagement {
        imports {
            mavenBom "org.eclipse.xtext:xtext-dev-bom:2.17.0.M1"
        }
    }
...
}


or with Gradle 5.0+ the new native support.
    dependencies {
        compile platform("org.eclipse.xtext:xtext-dev-bom:2.17.0.M1")
    }


We encourage you to test early and give feedback.

Thank you
Christian

[Updated on: Wed, 16 January 2019 03:55] by Moderator

Previous Topic:how can i create a rule containing regular expression?
Next Topic:Error in building shadowJar in command prompt
Goto Forum:
  


Current Time: Fri Jun 20 16:47:57 EDT 2025

Powered by FUDForum. Page generated in 0.02994 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top