diff options
author | Olivier Lamy <olamy@apache.org> | 2022-04-11 14:11:45 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-11 14:11:45 +1000 |
commit | 6f4b08e4ad279dcf77faa8034f3e3983e3afde32 (patch) | |
tree | 48d0adaec669ca50e26505437377b645afd8323c /archiva-modules | |
parent | eb489a1deedf3366325922b29473c8b2302f9fce (diff) | |
download | archiva-6f4b08e4ad279dcf77faa8034f3e3983e3afde32.tar.gz archiva-6f4b08e4ad279dcf77faa8034f3e3983e3afde32.zip |
add gh action, dependabot and release-drafter and get rid of travis (#65)
* add gh action, dependabot and release-drafter and get rid of travis
* move owasp check in a separate profile
Signed-off-by: Olivier Lamy <olamy@apache.org>
Diffstat (limited to 'archiva-modules')
-rw-r--r-- | archiva-modules/archiva-web/archiva-webapp/pom.xml | 51 |
1 files changed, 27 insertions, 24 deletions
diff --git a/archiva-modules/archiva-web/archiva-webapp/pom.xml b/archiva-modules/archiva-web/archiva-webapp/pom.xml index 1418bec90..d3ca90441 100644 --- a/archiva-modules/archiva-web/archiva-webapp/pom.xml +++ b/archiva-modules/archiva-web/archiva-webapp/pom.xml @@ -840,30 +840,6 @@ </systemPropertyVariables> </configuration> </plugin> - - - - - <plugin> - <groupId>org.owasp</groupId> - <artifactId>dependency-check-maven</artifactId> - <version>6.0.4</version> - <configuration> - <skipProvidedScope>true</skipProvidedScope> - <failBuildOnCVSS>8</failBuildOnCVSS> - <suppressionFile>${project.basedir}/src/main/resources/META-INF/owasp/cve-suppressions.xml</suppressionFile> - <ossindexAnalyzerEnabled>false</ossindexAnalyzerEnabled> - <assemblyAnalyzerEnabled>false</assemblyAnalyzerEnabled> - <nodeAnalyzerEnabled>false</nodeAnalyzerEnabled> - </configuration> - <executions> - <execution> - <goals> - <goal>check</goal> - </goals> - </execution> - </executions> - </plugin> </plugins> </build> @@ -874,6 +850,33 @@ <archiva.repositorySessionFactory.id>cassandra</archiva.repositorySessionFactory.id> </properties> </profile> + <profile> + <id>owasp</id> + <build> + <plugins> + <plugin> + <groupId>org.owasp</groupId> + <artifactId>dependency-check-maven</artifactId> + <version>6.0.4</version> + <configuration> + <skipProvidedScope>true</skipProvidedScope> + <failBuildOnCVSS>8</failBuildOnCVSS> + <suppressionFile>${project.basedir}/src/main/resources/META-INF/owasp/cve-suppressions.xml</suppressionFile> + <ossindexAnalyzerEnabled>false</ossindexAnalyzerEnabled> + <assemblyAnalyzerEnabled>false</assemblyAnalyzerEnabled> + <nodeAnalyzerEnabled>false</nodeAnalyzerEnabled> + </configuration> + <executions> + <execution> + <goals> + <goal>check</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> </profiles> </project> |