diff options
author | 2020-08-31 16:33:58 -0400 | |
---|---|---|
committer | 2020-08-31 17:04:31 -0400 | |
commit | a45eb46d8e0cfc228e3d56523c101152821badce (patch) | |
tree | ddee7d28f1993a84022354c737282fb587d4ea43 /ccsdk-app-overlay/.checkstyle | |
parent | 47b65efd69c5158d958261846803d2e15adfb448 (diff) |
fix issue with deploying server TLS certificates
Issue-ID: DCAEGEN2-2298
Change-Id: I45cb6684902f7eedfb84a390717bdfb3dd51f746
Signed-off-by: Kotagiri, Ramprasad (rp5662) <rp5662@att.com>
Diffstat (limited to 'ccsdk-app-overlay/.checkstyle')
-rw-r--r-- | ccsdk-app-overlay/.checkstyle | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/ccsdk-app-overlay/.checkstyle b/ccsdk-app-overlay/.checkstyle index f7cae1b..f9346ee 100644 --- a/ccsdk-app-overlay/.checkstyle +++ b/ccsdk-app-overlay/.checkstyle @@ -1,21 +1,21 @@ <?xml version="1.0" encoding="UTF-8"?> <fileset-config file-format-version="1.2.0" simple-config="false" sync-formatter="false"> - <local-check-config name="maven-checkstyle-plugin onap-license" location="jar:file:/Users/dt5972/.m2/repository/org/onap/oparent/checkstyle/1.2.3/checkstyle-1.2.3.jar!/onap-checkstyle/check-license.xml" type="remote" description="maven-checkstyle-plugin configuration onap-license"> + <local-check-config name="maven-checkstyle-plugin onap-license" location="jar:file:/C:/Users/rp5662/.m2/repository/org/onap/oparent/checkstyle/2.0.0/checkstyle-2.0.0.jar!/onap-checkstyle/check-license.xml" type="remote" description="maven-checkstyle-plugin configuration onap-license"> + <property name="checkstyle.header.file" value="C:\Users\rp5662\Documents\workspace-java11\.metadata\.plugins\org.eclipse.core.resources\.projects\ccsdk-app-overlay\com.basistech.m2e.code.quality.checkstyleConfigurator\checkstyle-header-onap-license.txt"/> <property name="checkstyle.cache.file" value="${project_loc}/target/checkstyle-cachefile"/> - <property name="checkstyle.header.file" value="/Users/dt5972/eclipse/onap/.metadata/.plugins/org.eclipse.core.resources/.projects/ccsdk-app-overlay/com.basistech.m2e.code.quality.checkstyleConfigurator/checkstyle-header-onap-license.txt"/> </local-check-config> - <local-check-config name="maven-checkstyle-plugin onap-java-style" location="jar:file:/Users/dt5972/.m2/repository/org/onap/oparent/checkstyle/1.2.3/checkstyle-1.2.3.jar!/onap-checkstyle/onap-java-style.xml" type="remote" description="maven-checkstyle-plugin configuration onap-java-style"> + <local-check-config name="maven-checkstyle-plugin onap-java-style" location="jar:file:/C:/Users/rp5662/.m2/repository/org/onap/oparent/checkstyle/2.0.0/checkstyle-2.0.0.jar!/onap-checkstyle/onap-java-style.xml" type="remote" description="maven-checkstyle-plugin configuration onap-java-style"> + <property name="checkstyle.header.file" value="C:\Users\rp5662\Documents\workspace-java11\.metadata\.plugins\org.eclipse.core.resources\.projects\ccsdk-app-overlay\com.basistech.m2e.code.quality.checkstyleConfigurator\checkstyle-header-onap-java-style.txt"/> <property name="checkstyle.cache.file" value="${project_loc}/target/checkstyle-cachefile"/> - <property name="checkstyle.header.file" value="/Users/dt5972/eclipse/onap/.metadata/.plugins/org.eclipse.core.resources/.projects/ccsdk-app-overlay/com.basistech.m2e.code.quality.checkstyleConfigurator/checkstyle-header-onap-java-style.txt"/> </local-check-config> <fileset name="java-sources-onap-license" enabled="true" check-config-name="maven-checkstyle-plugin onap-license" local="true"> - <file-match-pattern match-pattern="^src/test/java.*\/.*\.java" include-pattern="true"/> - <file-match-pattern match-pattern="^src/main/java.*\/.*\.java" include-pattern="true"/> + <file-match-pattern match-pattern="^src/main/java.*\.java" include-pattern="true"/> + <file-match-pattern match-pattern="^src/test/java.*\.java" include-pattern="true"/> </fileset> <fileset name="java-sources-onap-java-style" enabled="true" check-config-name="maven-checkstyle-plugin onap-java-style" local="true"> - <file-match-pattern match-pattern="^src/test/java.*\/.*\.java" include-pattern="true"/> - <file-match-pattern match-pattern="^src/main/java.*\/.*\.java" include-pattern="true"/> + <file-match-pattern match-pattern="^src/main/java.*\.java" include-pattern="true"/> + <file-match-pattern match-pattern="^src/test/java.*\.java" include-pattern="true"/> <file-match-pattern match-pattern="^src/main/resources.*\.properties" include-pattern="true"/> <file-match-pattern match-pattern="^src/test/resources.*\.properties" include-pattern="true"/> </fileset> |