Skip to content
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

Cannot run application due to missing Maven dependency #63

Open
stefan-ka opened this issue Aug 3, 2020 · 2 comments
Open

Cannot run application due to missing Maven dependency #63

stefan-ka opened this issue Aug 3, 2020 · 2 comments
Assignees
Labels
bug Something isn't working

Comments

@stefan-ka
Copy link

Hi @loehnertz

Interesting project, I wanted to have a look at the running application ;)

I tried to run with docker-compose but it seems like you configured a dependency somewhere which cannot be found within the configured repositories:

[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  01:01 min
[INFO] Finished at: 2020-08-03T09:51:10Z
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal on project steinmetz: Could not resolve dependencies for project codes.jakob:steinmetz:jar:1.0-SNAPSHOT: Could not find artifact de.tudarmstadt.lt:chinese-whispers:jar:0.0.1-SNAPSHOT in jcenter (https://jcenter.bintray.com) -> [Help 1]
[ERROR] 

Best regards,
Stefan

@stefan-ka stefan-ka added the bug Something isn't working label Aug 3, 2020
@loehnertz
Copy link
Owner

Oh damn, I will look into it.
I'll get back to you!

@loehnertz
Copy link
Owner

For the time being, you could use the pre-built images from DockerHub:

version: "3"
services:
  frontend:
    image: loehnertz/steinmetz-frontend
    ports:
      - 8056:80
    volumes:
      - data:/app
    depends_on:
      - backend
  backend:
    image: loehnertz/steinmetz-frontend
    ports:
      - 5005:5005
      - 5656:5656
    environment:
      NEO4J_HOST: "database"
      NEO4J_PORT: "7687"
      EXTERNAL_EXECUTABLE_PATH: "/app/executables/"
    depends_on:
      - database
  database:
    image: loehnertz/steinmetz-database
    ports:
      - 7474
      - 7687
    environment:
      NEO4J_AUTH: "none"
      NEO4J_dbms_memory_heap_max__size: "4G"
    volumes:
      - data:/data
      - data:/logs
volumes:
  data:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants