Skip to content

Commit

Permalink
Merge pull request #225 from eclipse/merge_latest_fixes
Browse files Browse the repository at this point in the history
Merge latest fixes
  • Loading branch information
Menahem Julien Raccah Lisei authored Sep 3, 2020
2 parents 4bb732a + 17ac247 commit 308bed5
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 4 deletions.
8 changes: 6 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ jobs:
services:
- docker
before_script:
- true
script:
- mvn --fail-fast -q clean install
- docker build --build-arg JAR_FILE=./middleware-service/target/vorto-middleware-1.0.0.jar -f ./middleware-service/Dockerfile -t eclipsevorto/vorto-normalizer:nightly ./middleware-service;
Expand Down Expand Up @@ -45,8 +46,10 @@ jobs:
language: node_js
node_js:
- '10'
before_script:
script:
before_script:
- true
script:
- true
before_install:
- cd vorto-dashboard
install:
Expand Down Expand Up @@ -91,6 +94,7 @@ jobs:
install:
- echo "Installing dependencies"
- yarn install
- echo "Finished yarn install"
after_success:
- echo "Creating build"
- npm run build
Expand Down
2 changes: 1 addition & 1 deletion vorto-dashboard/things/DataPoller/AuthToken.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ class AuthToken {
grant_type: 'client_credentials',
client_id: clientId,
client_secret: clientSecret,
'scope:service': scope
'scope': scope
}

return request(this.getReqOpts(tokenForm))
Expand Down
14 changes: 13 additions & 1 deletion vorto-generators/org.eclipse.vorto.codegen.azure/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,33 @@
<groupId>org.eclipse.vorto</groupId>
<artifactId>org.eclipse.vorto.core</artifactId>
<version>0.11.1</version>
<exclusions>
<exclusion>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>org.eclipse.vorto</groupId>
<artifactId>plugin-api</artifactId>
<version>0.11.1</version>
<exclusions>
<exclusion>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.eclipse.xtend</groupId>
<artifactId>org.eclipse.xtend.lib</artifactId>
<version>${xtext.version}</version>
<exclusions>
<exclusion>
<artifactId>guava</artifactId>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</exclusion>
</exclusions>
</dependency>
Expand Down

0 comments on commit 308bed5

Please sign in to comment.