-
Notifications
You must be signed in to change notification settings - Fork 246
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
Dependency analysis in gitlab #2144
Open
cogross
wants to merge
12
commits into
integration
Choose a base branch
from
dependency-analysis-in-gitlab-squash
base: integration
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
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
cogross
force-pushed
the
dependency-analysis-in-gitlab-squash
branch
5 times, most recently
from
October 25, 2023 16:34
8d6929c
to
9fec5b7
Compare
cogross
force-pushed
the
dependency-analysis-in-gitlab-squash
branch
3 times, most recently
from
November 7, 2023 12:19
1f7ffe1
to
c215908
Compare
cogross
force-pushed
the
dependency-analysis-in-gitlab-squash
branch
4 times, most recently
from
November 16, 2023 16:39
761736e
to
367009b
Compare
cogross
force-pushed
the
dependency-analysis-in-gitlab-squash
branch
5 times, most recently
from
December 1, 2023 11:40
c3ba32d
to
83bbbc6
Compare
cogross
force-pushed
the
dependency-analysis-in-gitlab-squash
branch
3 times, most recently
from
December 11, 2023 20:18
1a2278a
to
3c84d00
Compare
cogross
force-pushed
the
dependency-analysis-in-gitlab-squash
branch
3 times, most recently
from
December 15, 2023 17:57
f70b06f
to
4545a0f
Compare
cogross
force-pushed
the
dependency-analysis-in-gitlab-squash
branch
from
January 16, 2024 18:41
4545a0f
to
56a8faa
Compare
cogross
force-pushed
the
dependency-analysis-in-gitlab-squash
branch
4 times, most recently
from
January 30, 2024 15:17
200ea83
to
8f83b84
Compare
cogross
force-pushed
the
dependency-analysis-in-gitlab-squash
branch
2 times, most recently
from
February 8, 2024 15:38
82a9abe
to
a59bc19
Compare
cogross
force-pushed
the
dependency-analysis-in-gitlab-squash
branch
3 times, most recently
from
September 10, 2024 19:33
b167a8a
to
09f3a28
Compare
cogross
force-pushed
the
dependency-analysis-in-gitlab-squash
branch
4 times, most recently
from
September 16, 2024 15:36
bdcffa7
to
3b8c70c
Compare
cogross
force-pushed
the
dependency-analysis-in-gitlab-squash
branch
5 times, most recently
from
October 2, 2024 18:35
daf2cc7
to
1952035
Compare
cogross
force-pushed
the
dependency-analysis-in-gitlab-squash
branch
2 times, most recently
from
October 7, 2024 18:52
370ec51
to
7a481ca
Compare
cogross
force-pushed
the
dependency-analysis-in-gitlab-squash
branch
3 times, most recently
from
November 6, 2024 18:49
292403a
to
120295b
Compare
cogross
force-pushed
the
dependency-analysis-in-gitlab-squash
branch
from
November 13, 2024 19:48
120295b
to
027df1d
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Dependency analysis runs in gitlab
updated structure to remove most "unused declared" and "used undeclared" dependencies.
A few still remain that are used that the tool falsely identifies as unused. Notes on those below. I tried using a few different tactics but I wasn't quite able to untangle the dependencies.
locally, run
mvn -DignoreNonCompile dependency:analyze
to see results.
NOTES
datawave-ws-atom
needs abdera, axiom-impl, axiom-api, hadoop-client-runtime
datawave-ingest-core
needs accumulo-server-base, log4j-core, hadoop-client-runtime, log4japi, log4j-slf4j-impl
datawave-ingest-csv
needs datawave-ingest-configuration, accumulo-core is not test only
datawave-ingest-json
needs datawave-ingest-configuration, hadoop-mapreducew-client-core/-common
datawave-query-core
needs json-simple, jackson-module-jaxb-annotations, lucene-analyzers-common, commons-logging, datawave-ingest-configuration, hadoop-mapreduce-client-core
datawave-ingest-wikipedia
needs datawave-ingest-configuration, type-utils not just test only
assemble-datawave
datawave-ops-tools-index-validation
needs zookeeper
OLD NOTES
datawave-core:
log4j-slf4j-impl
causesorg.junit.ComparisonFailure: expected:<[Hash]UID> but was:<[Snowflake]UID>
error - UID uses a logger.datawave-ws-atom:
abdera-parser
,hadoop-client-runtime
,axiom-api
,axiom-impl
are all requireddatawave-ingest-core:
accumulo-server-base
,log4j-core
,hadoop-client-runtime
,log4j-api
,log4j-slf4j-impl
are all requireddatawave-ingest-csv:
hadoop-mapreduce-client-common
,datawave-ingest-configuration
are usedaccumulo-core
not just scoped for testsdatawave-ingest-json:
hadoop-mapreduce-client-core
,hadoop-mapreduce-client-common
,datawave-ingest-configuration
are all requireddatawave-query-core:
-
hadoop-mapreduce-client-core
,json-simple
are requireddatawave-ws-model:
slf4j-api
is requiredauthorization-api
is not just scoped for testsdatawave-ingest-wikipedia:
-
datawave-ingest-configuration
is requiredtype-utils
is not just scoped for testsdatawave-metrics-core:
datawave-query-core
is requireddatawave-ops-tools-config-compare:
hadoop-client-runtime
is requireddatawave-ops-tools-index-validation:
zookeeper
,guava
are required