diff --git a/README.md b/README.md index 898ae210..efc70967 100644 --- a/README.md +++ b/README.md @@ -5,3 +5,22 @@ [![Maven Central](https://img.shields.io/maven-central/v/dev.rudiments/implementation.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22dev.rudiments%22%20AND%20a:%22implementation%22) Research project and bootstrap library. + +## Gradle project + +``` +apply plugin: 'java' +repositories { + mavenCentral() + maven { url "https://oss.sonatype.org/content/repositories/snapshots" } +} + +sourceCompatibility = 1.8 +targetCompatibility = 1.8 + +dependencies { + implementation 'dev.rudiments:type-registry:0.3-SNAPSHOT' + implementation 'dev.rudiments:sql:0.3-SNAPSHOT' + implementation 'dev.rudiments:implementation:0.3-SNAPSHOT' +} +``` diff --git a/azure-pipelines.yml b/azure-pipelines.yml index e5d0554b..1c5417b6 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -28,7 +28,7 @@ jobs: steps: - script: | ./gradlew build aggregateScoverage - bash <(curl -s https://codecov.io/bash) + bash <(curl -s https://codecov.io/bash) -c -F unittests displayName: 'Run unit testing with gradlew' diff --git a/examples/todo-app/README.md b/examples/todo-app/README.md new file mode 100644 index 00000000..3d433882 --- /dev/null +++ b/examples/todo-app/README.md @@ -0,0 +1,10 @@ +# How to run the ToDo-app + +- install yarn or npm with your package manager +- cd to path/to/dir +- run `yarn serve` + +## Preconfigured Vuejs app + Tailwind CSS framework + +- clone path/to/repo/branch +