Skip to content

Commit

Permalink
Merge pull request #18 from jperedadnr/master
Browse files Browse the repository at this point in the history
Update versions
  • Loading branch information
José Pereda authored Jun 12, 2019
2 parents bc2252b + 7aba452 commit 4ac880a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group 'com.gluonhq'
version '0.0.4'
version '0.0.7'

sourceCompatibility = 11
targetCompatibility = 11
Expand All @@ -28,7 +28,7 @@ repositories {
dependencies {
implementation gradleApi()

implementation 'com.gluonhq:omega:0.0.7'
implementation 'com.gluonhq:omega:0.0.8'
}

gradlePlugin {
Expand Down
11 changes: 5 additions & 6 deletions src/main/java/com/gluonhq/gradle/ClientExtension.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,10 @@

public class ClientExtension {

private static final String DEFAULT_GRAAL_LIBS_VERSION = "20.0.0-beta.01";
private static final String DEFAULT_JAVA_STATIC_SDK_VERSION = "11-ea+2";
private static final String DEFAULT_JAVAFX_STATIC_SDK_VERSION = "13-ea+3";
private static final String DEFAULT_GRAAL_LIBS_VERSION = "20.0.0-ea+8";
private static final String DEFAULT_JAVA_STATIC_SDK_VERSION = "11-ea+6";
private static final String DEFAULT_JAVAFX_STATIC_SDK_VERSION = "13-ea+6";
private static final String DEFAULT_TARGET = "host";
private static final String DEFAULT_BACKEND = "lir";

/**
* Defines the target platform. Default is host, which refers to the platform
Expand All @@ -53,7 +52,7 @@ public class ClientExtension {
/**
* Defines the intermediate representation.
* It can be set to LLVM or LIR.
* Default is "LIR"
* By default is not set and will be set based on the target platform
*/
private String backend;

Expand Down Expand Up @@ -153,7 +152,7 @@ public ClientExtension(Project project) {
this.javaStaticSdkVersion = DEFAULT_JAVA_STATIC_SDK_VERSION;
this.javafxStaticSdkVersion = DEFAULT_JAVAFX_STATIC_SDK_VERSION;
this.target = DEFAULT_TARGET;
this.backend = DEFAULT_BACKEND;
this.backend = "";
this.bundlesList = new ArrayList<>();
this.resourcesList = new ArrayList<>();
this.reflectionList = new ArrayList<>();
Expand Down

0 comments on commit 4ac880a

Please sign in to comment.