Skip to content

update #118

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Apr 4, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up JDK 13s
uses: actions/setup-java@v13
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 13
java-version: 1.8
- name: Build with Maven
run: ./mvnw -B package --file pom.xml
run: ./mvnw -B -DskipTests clean dependency:list install --file pom.xml
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>unpack-dependencies</id>
<id>unpack-dependencies-classpath</id>
<phase>site</phase>
<goals>
<goal>analyze-only</goal>
Expand Down Expand Up @@ -357,7 +357,7 @@
</configuration>
</execution>
<execution>
<id>check-dependencies1</id>
<id>check-dependencies-1</id>
<phase>site</phase>
<goals>
<goal>list</goal>
Expand All @@ -366,7 +366,7 @@
</goals>
</execution>
<execution>
<id>check-dependencies2</id>
<id>check-dependencies-2</id>
<phase>site</phase>
<goals>
<goal>analyze</goal>
Expand All @@ -376,7 +376,7 @@
</goals>
</execution>
<execution>
<id>check-dependencies3</id>
<id>check-dependencies-3</id>
<phase>site</phase>
<goals>
<goal>tree</goal>
Expand Down
4 changes: 2 additions & 2 deletions run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,9 @@ function runDev() {
}

function runGithubTestBuild() {
./mvnw -B package --file pom.xml
./mvnw -B -DskipTests clean dependency:list install --file pom.xml
}


function setupHeroku() {
heroku login
heroku ps -a simpleworklist
Expand All @@ -30,6 +29,7 @@ function runHerokuLocal() {
}

function main() {
runGithubTestBuild
#runDev
#setupHeroku
runHerokuLocal
Expand Down