You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@metron.apache.org by GitBox <gi...@apache.org> on 2019/11/06 12:40:23 UTC

[GitHub] [metron] justinleet edited a comment on issue #1554: METRON-2307: Migrate to JUnit5

justinleet edited a comment on issue #1554: METRON-2307: Migrate to JUnit5
URL: https://github.com/apache/metron/pull/1554#issuecomment-550291563
 
 
   @mmiklavc Given how large this PR is, here's a git command that *should* just pull out the `src` files that changed. `git difftool` will also work if you have that setup.  I excluded the `pom` and `dependencies_with_url` files 
   
   ```
    git diff master -- . ':!*/test/*' ':!*pom.xml*' ':dependencies_with_url.csv'
   ```
   
   List of files (from `git diff --name-only`):
   ```
   metron-interface/metron-rest/src/main/java/org/apache/metron/rest/config/HBaseConfig.java
   metron-interface/metron-rest/src/main/java/org/apache/metron/rest/config/HadoopConfig.java
   metron-interface/metron-rest/src/main/java/org/apache/metron/rest/config/KnoxSSOAuthenticationFilter.java
   metron-interface/metron-rest/src/main/java/org/apache/metron/rest/config/RestTemplateConfig.java
   metron-interface/metron-rest/src/main/java/org/apache/metron/rest/service/impl/DockerStormCLIWrapper.java
   metron-interface/metron-rest/src/main/java/org/apache/metron/rest/service/impl/HdfsServiceImpl.java
   metron-platform/metron-elasticsearch/metron-elasticsearch-common/src/main/java/org/apache/metron/elasticsearch/writer/ElasticsearchWriter.java
   metron-platform/metron-enrichment/metron-enrichment-common/src/main/java/org/apache/metron/enrichment/stellar/EnrichmentObjectGet.java
   metron-platform/metron-enrichment/metron-enrichment-common/src/main/java/org/apache/metron/enrichment/stellar/ObjectGet.java
   metron-platform/metron-indexing/metron-indexing-common/src/main/java/org/apache/metron/indexing/dao/metaalert/lucene/AbstractLuceneMetaAlertUpdateDao.java
   metron-platform/metron-indexing/metron-indexing-common/src/main/java/org/apache/metron/indexing/dao/search/SortField.java
   metron-platform/metron-integration-test/src/main/java/org/apache/metron/integration/StellarClasspathFunctionResolver.java
   metron-platform/metron-integration-test/src/main/java/org/apache/metron/integration/components/FluxTopologyComponent.java
   metron-platform/metron-parsing/metron-parsers-common/src/main/java/org/apache/metron/parsers/ParserRunnerImpl.java
   metron-platform/metron-solr/metron-solr-common/src/main/java/org/apache/metron/solr/dao/SolrDao.java
   metron-stellar/stellar-common/src/main/java/org/apache/metron/stellar/common/utils/StellarProcessorUtils.java
   ```
   Looks like `MetronRestApplicationTest` isn't included, probably because it doesn't exist anymore in the PR.
   
   For completeness, if you only want the poms:
   ```
   git diff --name-only master -- . ':!*/src/*' ':!dependencies_with_url.csv'
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services