Skip to content

Commit

Permalink
Merge pull request #107 from iExecBlockchainComputing/3.0.0-alpha2
Browse files Browse the repository at this point in the history
Release version 3.0.0-alpha2
  • Loading branch information
jeremyjams committed Feb 8, 2019
2 parents aca4feb + 73a88a4 commit 8ab6395
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
30 changes: 15 additions & 15 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
import org.apache.tools.ant.filters.ReplaceTokens

buildscript {
ext {
springBootVersion = '2.0.5.RELEASE'
}
repositories {
mavenCentral()
ext {
springBootVersion = '2.0.5.RELEASE'
}
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}

apply plugin: 'java'
Expand All @@ -23,13 +23,13 @@ apply plugin: 'jacoco'
group = 'com.iexec.worker'
sourceCompatibility = 1.8

def UNIQUE_ID='hostname -f'.execute().text.trim()
def token='curl -XPOST --data name=${UNIQUE_ID} https://58448eb9dc6e105c7a3f77c74880f451234251ea3eeae544:@packagecloud.io/install/repositories/iexec/common/tokens.text'.execute().text.trim()
def UNIQUE_ID = 'hostname -f'.execute().text.trim()
def token = 'curl -XPOST --data name=${UNIQUE_ID} https://58448eb9dc6e105c7a3f77c74880f451234251ea3eeae544:@packagecloud.io/install/repositories/iexec/common/tokens.text'.execute().text.trim()


repositories {
mavenCentral()
jcenter()
mavenCentral()
jcenter()
maven {
url "https://packagecloud.io/priv/${token}/iexec/common/maven2"
}
Expand All @@ -53,7 +53,7 @@ dependencyManagement {
dependencies {
// iexec
compile "com.iexec.common:iexec-common:$iexecCommonVersion"
//compile files('../iexec-common/build/libs/iexec-common-3.0.0-SNAPSHOT.jar')
//compile files("../iexec-common/build/libs/iexec-common-${iexecCommonVersion}.jar")

// spring
compile "org.springframework.boot:spring-boot-starter"
Expand All @@ -74,7 +74,7 @@ dependencies {
compileOnly "org.projectlombok:lombok:1.18.2"
annotationProcessor "org.projectlombok:lombok:1.18.2"

// package cloud
// package cloud
deployerJars "io.packagecloud.maven.wagon:maven-packagecloud-wagon:0.0.6"
}

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
iexecCommonVersion=3.0.0-SNAPSHOT
iexecCommonVersion=3.0.0-alpha2
packageCloudPassword=fake
version=3.0.0-SNAPSHOT
version=3.0.0-alpha2

0 comments on commit 8ab6395

Please sign in to comment.