Skip to content

Commit

Permalink
changing build tasks names a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
shawn-mcginty committed Jun 4, 2020
1 parent d75d502 commit 1e737df
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,15 @@ Blog Platform
1. JDK 11
2. Scala 2.13
3. PostgreSQL 11
* This is not required on dev machine, but you'll need to connect to a postgresql database to run the app.
4. NodeJS 10+

* IntelliJ Idea project files included to make getting started easier.

#### Build

```bash
gradlew compileScala
gradlew compile
```

#### Run
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ dependencies {

mainClassName = 'org.bringo.server.Main'

task webpack(type: Exec) {
task compileJs(type: Exec) {
commandLine "npm", "run", "build"
}

compileScala.dependsOn webpack
compileJava.dependsOn compileJs

0 comments on commit 1e737df

Please sign in to comment.