An open API service indexing awesome lists of open source software.

https://github.com/hohonuuli/demoseed

Playground for learning seed (a Scala build tool)
https://github.com/hohonuuli/demoseed

Last synced: 2 months ago
JSON representation

Playground for learning seed (a Scala build tool)

Awesome Lists containing this project

README

        

# demoseed

Playground for trying out [seed](https://github.com/tindzk/seed). This project is set up to mimic a typical sbt/maven/gradle project.

## Commands

```bash
# Configure bloop
seed bloop

# configure everything (including .idea)
seed all

# Methods to run it
seed run demoseed
bloop run demoseed

# Run tests
bloop test demoseed

# build jar
seed package demoseed

# build a distribution
seed package demoseed --libs
```