项目作者: Ealrann

项目描述 :
EMF, compatible java 9 modules, no Eclipse dependencies
高级语言: Java
项目地址: git://github.com/Ealrann/EMF-Standalone.git
创建时间: 2018-12-03T05:46:54Z
项目社区:https://github.com/Ealrann/EMF-Standalone

开源协议:Other

下载


EMF-Standalone

EMF, compatible with java 9 modules, no Eclipse dependencies.

Current EMF version on master: 2.32.0.

To easily update this fork, I chose to keep a minimal list of commit in master; Then, I re-apply these commits on the new versions of EMF. I finally “store” the result in a dedicated branch for this version.

Using with Gradle

Github packages are published. To use them, you first need to generate a Github Access Token, and store it in a local file ~/.gradle/gradle.properties:

  1. github.username=
  2. github.token=

Then, you can import these libraries in your build.gradle:

  1. repositories {
  2. maven {
  3. url "https://maven.pkg.github.com/ealrann/emf-standalone"
  4. credentials {
  5. username = findProperty("github.username") ?: System.getenv("USERNAME")
  6. password = findProperty("github.token") ?: System.getenv("TOKEN")
  7. }
  8. }
  9. }
  10. dependencies {
  11. api "emf.standalone:org.eclipse.emf.common:2.32.0"
  12. api "emf.standalone:org.eclipse.emf.ecore:2.32.0"
  13. api "emf.standalone:org.eclipse.emf.ecore.xmi:2.32.0"
  14. }

Credentials can be defined in a gradle.properties
To generate a github token: https://github.com/settings/tokens