diff options
author | Singal, Kapil (ks220y) <ks220y@att.com> | 2020-02-13 12:20:05 -0500 |
---|---|---|
committer | KAPIL SINGAL <ks220y@att.com> | 2020-02-13 20:42:11 +0000 |
commit | dd1e8806f6486cfa2a0e488a6329db5ece3fb8e6 (patch) | |
tree | 8a4fa1b29b7f22086aa02a488e73fbe30ba01b43 /reference/logging-filter | |
parent | 14b43762d64cdda2e90a59807f2b61ce499be4a4 (diff) |
Refactoring POM's and .gitignore
Removing IDE generated files
Issue-ID: LOG-1200
Signed-off-by: Singal, Kapil (ks220y) <ks220y@att.com>
Change-Id: Ie9182553ae5ea3ee1c852049678c92860a7eedb0
Diffstat (limited to 'reference/logging-filter')
-rw-r--r-- | reference/logging-filter/logging-filter-base/pom.xml | 2 | ||||
-rw-r--r-- | reference/logging-filter/logging-filter-spring/pom.xml | 2 | ||||
-rw-r--r-- | reference/logging-filter/pom.xml | 16 |
3 files changed, 13 insertions, 7 deletions
diff --git a/reference/logging-filter/logging-filter-base/pom.xml b/reference/logging-filter/logging-filter-base/pom.xml index c0eb689..7f6b62d 100644 --- a/reference/logging-filter/logging-filter-base/pom.xml +++ b/reference/logging-filter/logging-filter-base/pom.xml @@ -10,6 +10,8 @@ <artifactId>logging-filter-base</artifactId> + <name>logging-analytics :: ${project.artifactId}</name> + <dependencies> <dependency> <groupId>javax.annotation</groupId> diff --git a/reference/logging-filter/logging-filter-spring/pom.xml b/reference/logging-filter/logging-filter-spring/pom.xml index a7a86d4..e20f8d7 100644 --- a/reference/logging-filter/logging-filter-spring/pom.xml +++ b/reference/logging-filter/logging-filter-spring/pom.xml @@ -10,6 +10,8 @@ <artifactId>logging-filter-spring</artifactId> + <name>logging-analytics :: ${project.artifactId}</name> + <dependencyManagement> <dependencies> <dependency> diff --git a/reference/logging-filter/pom.xml b/reference/logging-filter/pom.xml index 5a3fc01..df92b47 100644 --- a/reference/logging-filter/pom.xml +++ b/reference/logging-filter/pom.xml @@ -11,6 +11,8 @@ <artifactId>logging-filter-parent</artifactId> <packaging>pom</packaging> + <name>logging-analytics :: ${project.artifactId}</name> + <modules> <module>logging-filter-base</module> <module>logging-filter-spring</module> @@ -100,13 +102,13 @@ </plugin> <!-- Plugin to Generate/Validate Copyright License header --> - <!-- <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> <version>1.20</version> <configuration> <processStartTag>============LICENSE_START=======================================================</processStartTag> - <sectionDelimiter>================================================================================</sectionDelimiter> <processEndTag>============LICENSE_END=========================================================</processEndTag> - <licenseName>apache_v2</licenseName> <inceptionYear>2019</inceptionYear> <organizationName>AT&T Intellectual Property. All rights reserved.</organizationName> <projectName>ONAP - - Logging</projectName> <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage> <skipUpdateLicense>${format.skipExecute}</skipUpdateLicense> <skipCheckLicense>${format.skipValidate}</skipCheckLicense> - </configuration> <executions> <execution> <id>update-headers</id> <goals> <goal>update-file-header</goal> </goals> <phase>process-sources</phase> <configuration> <canUpdateCopyright>true</canUpdateCopyright> - <canUpdateDescription>true</canUpdateDescription> <canUpdateLicense>true</canUpdateLicense> <emptyLineAfterHeader>true</emptyLineAfterHeader> </configuration> </execution> <execution> - <id>check-headers</id> <goals> <goal>check-file-header</goal> </goals> <phase>validate</phase> <configuration> <failOnNotUptodateHeader>true</failOnNotUptodateHeader> <failOnMissingHeader>true</failOnMissingHeader> + <!-- <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> <version>1.20</version> <configuration> <processStartTag>============LICENSE_START=======================================================</processStartTag> + <sectionDelimiter>================================================================================</sectionDelimiter> <processEndTag>============LICENSE_END=========================================================</processEndTag> + <licenseName>apache_v2</licenseName> <inceptionYear>2019</inceptionYear> <organizationName>AT&T Intellectual Property. All rights reserved.</organizationName> <projectName>ONAP + - Logging</projectName> <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage> <skipUpdateLicense>${format.skipExecute}</skipUpdateLicense> <skipCheckLicense>${format.skipValidate}</skipCheckLicense> + </configuration> <executions> <execution> <id>update-headers</id> <goals> <goal>update-file-header</goal> </goals> <phase>process-sources</phase> <configuration> <canUpdateCopyright>true</canUpdateCopyright> + <canUpdateDescription>true</canUpdateDescription> <canUpdateLicense>true</canUpdateLicense> <emptyLineAfterHeader>true</emptyLineAfterHeader> </configuration> </execution> <execution> + <id>check-headers</id> <goals> <goal>check-file-header</goal> </goals> <phase>validate</phase> <configuration> <failOnNotUptodateHeader>true</failOnNotUptodateHeader> <failOnMissingHeader>true</failOnMissingHeader> </configuration> </execution> </executions> </plugin> --> <!-- Plugin to Format/Validate Java Classes --> |