Want to hack on Dependency-Track? Awesome, here's what you need to know to get started!
Please be sure to read
CONTRIBUTING.md
andCODE_OF_CONDUCT.md
as well.
As of now, the Dependency-Track project consists of two separate repositories:
- DependencyTrack/dependency-track - The main application, also referred to as API server, based on Java and Alpine.
- DependencyTrack/frontend - The frontend, a single page application ( SPA), based on JavaScript and Vue.
This document primarily covers the API server. Please refer to the frontend repository for frontend-specific instructions.
There are a few things you'll need on your journey:
- JDK 17+ (Temurin distribution recommended)
- Maven (comes bundled with IntelliJ and Eclipse)
- A Java IDE of your preference (we recommend IntelliJ, but any other IDE is fine as well)
- Docker (optional)
We provide common run configurations for IntelliJ in the
.run
directory for convenience. IntelliJ will automatically pick those up when you open this repository.
Knowing about the core technologies used by the API server may help you with understanding its codebase.
Technology | Purpose |
---|---|
JAX-RS | REST API specification |
Jersey | JAX-RS implementation |
Java Data Objects (JDO) | Persistence specification |
DataNucleus | JDO implementation |
Jetty | Servlet Container |
Alpine | Framework / Scaffolding |
Build an executable JAR containing just the API server:
mvn clean package -P clean-exclude-wars -P enhance -P embedded-jetty -DskipTests -Dlogback.configuration.file=src/main/docker/logback.xml
Build an executable JAR that contains both API server and frontend (aka "bundled" distribution):
mvn clean package -P clean-exclude-wars -P enhance -P embedded-jetty -P bundle-ui -DskipTests -Dlogback.configuration.file=src/main/docker/logback.xml
When using the
bundle-ui
profile, Maven will download aDependencyTrack/frontend
release and include it in the JAR. The frontend version is specified via thefrontend.version
property inpom.xml
.
The resulting files are placed in ./target
as dependency-track-apiserver.jar
or dependency-track-bundled.jar
respectively.
Both JARs ship with
an embedded Jetty server,
there's no need to deploy them in an application server like Tomcat or WildFly.
In case you want to provide a topic prefix to use in conjunction with hyades application then the environment variable
to export is API_TOPIC_PREFIX
If the host environment requires ssl configuration then below configurations need to be passed:
Environment Variable | Description | Default | Required |
---|---|---|---|
API_TOPIC_PREFIX |
Prefix for topic names | - | ✅ |
KAFKA_TLS_ENABLED |
Whether tls is enabled | false | ❌ |
KAFKA_SECURTY_PROTOCOL |
Security protocol to be used | - | ❌ |
KAFKA_TRUSTSTORE_PATH |
Trust store path to be used | - | ❌ |
KAFKA_TRUSTSTORE_PASSWORD |
Trust store password | - | ❌ |
KAFKA_MTLS_ENABLED |
Whether mtls is enabled | false | ❌ |
KAFKA_KEYSTORE_PATH |
Key store path to be used | - | ❌ |
KAFKA_KEYSTORE_PASSWORD |
Key store password | - | ❌ |
KAFKA_STREAMS_METRICS_RECORDING_LEVEL |
Recording level of Kafka Streams metrics | INFO |
❌ |
(If tls is enabled then the security protocol, truststore path and password would be required properties) (If mtls is enabled then additional to truststore, keystore path and password would be required properties)
To run a previously built executable JAR, just invoke it with java -jar
, e.g.:
java -jar ./target/dependency-track-apiserver.jar
The API server will be available at http://127.0.0.1:8080
.
Additional configuration (e.g. database connection details) can be provided as usual via application.properties
or environment variables. Refer to
the configuration documentation.
To build and run the API server in one go, invoke the Jetty Maven plugin as follows:
mvn jetty:run -P enhance -Dlogback.configurationFile=src/main/docker/logback.xml
Note that the
bundle-ui
profile has no effect using this method. It works only for the API server, not the bundled distribution.
The above command is also suitable for debugging. For IntelliJ, simply Debug the Jetty run configuration.
For local debugging and testing, it is sometimes desirable to skip the NVD mirroring process that is executed a minute after Dependency-Track has started.
This can be achieved by tricking Dependency-Track into thinking that it already mirrored the NVD data, so there's no need to re-download it again.
Prior to starting Dependency-Track, execute the data-nist-generate-dummy.sh
script:
./scripts/data-nist-generate-dummy.sh
Note The
modified
feed will still be downloaded. But that feed is so small that it doesn't really have an impact. When testing containerized deployments, simply mount the local directory containing the prepared NVD data into the container:
./scripts/data-nist-generate-dummy.sh
docker run -d --name dtrack \
-v "$HOME/.dependency-track:/data/.dependency-track" \
-p '127.0.0.1:8080:8080' dependencytrack/apiserver:snapshot
Start the API server via the Jetty Maven plugin (see Debugging above). The API server will listen on
http://127.0.0.1:8080
.
Clone the frontend repository, install its required dependencies and launch the Vue development server:
git clone https://github.com/DependencyTrack/frontend.git dependency-track-frontend
cd ./dependency-track-frontend
npm ci
npm run serve
Per default, the Vue development server will listen on port 8080
. If that port is taken, it will choose a higher,
unused port (typically 8081
). Due to this behavior, it is important to always start the API server first, unless
you want to fiddle with default configurations of both API server and frontend.
Now visit http://127.0.0.1:8081
in your browser and use Dependency-Track as usual.
To run all tests:
mvn clean verify -P enhance
Depending on your machine, this will take roughly 10-30min. Unless you modified central parts of the application, starting single tests separately via IDE is a better choice.
Occasionally when running tests without Maven from within your IDE, you will run into failures due to exceptions similar to this one:
org.datanucleus.exceptions.NucleusUserException: Found Meta-Data for class org.dependencytrack.model.Component but this class is either not enhanced or you have multiple copies of the persistence API jar in your CLASSPATH!! Make sure all persistable classes are enhanced before running DataNucleus and/or the CLASSPATH is correct.
This happens because DataNucleus requires classes annotated with @PersistenceCapable
to
be enhanced.
Enhancement is performed on compiled bytecode and thus has to be performed post-compilation
(process-classes
lifecycle phase
in Maven).
During a Maven build,
the DataNucleus Maven plugin
takes care of this (that's also why -P enhance
is required in all Maven commands).
Because most IDEs run their own build when executing tests, effectively bypassing Maven, bytecode enhancement is not performed, and exceptions as that shown above are raised. If this happens, you can manually kick off the bytecode enhancement like this:
mvn clean process-classes -P enhance
Now just execute the test again, and it should just work.
If you're still running into issues, ensure that your IDE is not cleaning the workspace (removing the
target
directory) before executing the test.
Ensure you've built either API server or the bundled distribution, or both.
To build the API server image:
docker build --build-arg WAR_FILENAME=dependency-track-apiserver.jar -t dependencytrack/apiserver:local -f ./src/main/docker/Dockerfile .
To build the bundled image:
docker build --build-arg WAR_FILENAME=dependency-track-bundled.jar -t dependencytrack/bundled:local -f ./src/main/docker/Dockerfile .
Shedlock is being used to ensure that scheduled tasks are executed at most once at the same time. If a task is being executed on one node, it acquires a lock which prevents execution of the same task from another node (or thread). Please note, that if one task is already being executed on one node, execution on other nodes does not wait, it is simply skipped.
Lock can be configured using 2 properties: lockAtMostFor - specifies how long the lock should be kept in case the executing node dies. This is just a fallback, under normal circumstances the lock is released as soon the tasks finishes. Set lockAtMostFor to a value which is much longer than normal execution time.
lockAtLeastFor - specifies minimum amount of time for which the lock should be kept. Its main purpose is to prevent execution from multiple nodes in case of really short tasks and clock difference between the nodes.
e.g. For lock held by Portfolio Metrics task, the above properties will be configured task.metrics.portfolio.lockAtMostForInMillis