Skip to content

Commit

Permalink
Travis build replaced with Github action; dependency build fixed; Gra…
Browse files Browse the repository at this point in the history
…dle 6.1
  • Loading branch information
esocode committed Jan 20, 2020
1 parent daf3b4a commit d80b139
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 28 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Java CI

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
with:
path: main
- uses: actions/checkout@v2
with:
repository: esoco/esoco-common
path: esoco-common
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build with Gradle
run: main/gradlew build
22 changes: 0 additions & 22 deletions .travis.yml

This file was deleted.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# The gewt project

Travis build status:
[![Build Status](https://www.travis-ci.org/esoco/gewt.svg?branch=master)](https://www.travis-ci.org/esoco/gewt)
[![](https://github.com/esoco/gewt/workflows/Java%20CI/badge.svg)](https://github.com/esoco/gewt/actions)
[![Download](https://api.bintray.com/packages/esoco/sdack/gewt/images/download.svg)](https://bintray.com/esoco/sdack/gewt/_latestVersion)

This project contains the GEWT library which provides a generic user interface abstraction that wraps the open source Google Web Toolkit (GWT) for the actual user interface implementation. GEWT has the same API as EWT, a Java desktop user interface framework. GEWT makes it possible to build platform-independent user interfaces. Another important aspect of (G)EWT is that it provides a very simple and unified API for user interface implementations, freeing the developer from the need to handle the similar but differently implemented concepts of the UI toolkits.

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ configurations.all {

dependencies
{
api 'de.esoco:esoco-common:1.3.+'
api 'de.esoco:esoco-common:1.4.+'

testImplementation platform('org.junit:junit-bom:5.5.2')
testImplementation 'org.junit.jupiter:junit-jupiter'
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.0.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
5 changes: 3 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@ buildscript {

apply plugin: 'net.vivin.gradle-semantic-build-versioning'

includeFlat 'esoco-common'

['esoco-common'].each {
project -> if (new File("$rootDir/../$project").exists()) includeFlat project
}

0 comments on commit d80b139

Please sign in to comment.