-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update DSE image build to use compiled Agent
- Loading branch information
1 parent
146120d
commit e2befc2
Showing
6 changed files
with
164 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,20 @@ | ||
# Management API with DSE | ||
|
||
It is important to note that all DSE dependencies should only be specified in the DSE shim project(s). No DSE dependencies | ||
must be added to any other projects, as otherwise users won't be able to build the Management API. | ||
It is important to note that all DSE dependencies should only be specified in the DSE agent module. No DSE dependencies | ||
can be added to any other projects/modules, as users without access to DSE artifacts won't be able to build the OSSManagement API. | ||
|
||
## Building DSE locally and publishing the Jars | ||
## Building the Management API with DSE | ||
|
||
A special `dse` profile was created when building the Management API with DSE dependencies. The required maven command is as following: | ||
|
||
``` | ||
./gradlew jar publishToMavenLocal -Pversion=6.8.2 -PbuildType=SNAPSHOT | ||
mvn package -P dse | ||
``` | ||
|
||
## Building the Management API with DSE | ||
## Running tests for the DSE Agent | ||
|
||
A special `dse` profile was created when building the Management API with DSE dependencies. The required maven command is as following: | ||
To run the project tests against DSE, you need to enable the `dse` profile and specify the property to run DSE tests as follows: | ||
|
||
``` | ||
mvn package -P dse | ||
``` | ||
mvn verify -P dse -DrunDSEtests | ||
``` |
Oops, something went wrong.