Skip to content
This repository has been archived by the owner on Nov 24, 2023. It is now read-only.

[Snyk] Upgrade org.testng:testng from 6.3.1 to 6.14.3 #8

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 15 additions & 18 deletions findbugsTestCases/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.3.1</version>
<version>6.14.3</version>
</dependency>
<dependency>
<groupId>tomcat</groupId>
Expand Down Expand Up @@ -110,7 +110,7 @@
<target>1.8</target>
<debug>true</debug>
<compilerArguments>
<Xlint:none />
<Xlint:none xmlns:Xlint=""/>
</compilerArguments>
<includes>
<include>java/**/*.java</include>
Expand Down Expand Up @@ -163,27 +163,24 @@
</goals>
<configuration>
<target>
<property name="compile_classpath" refid="maven.compile.classpath" />
<property name="runtime_classpath" refid="maven.runtime.classpath" />
<property name="test_classpath" refid="maven.test.classpath" />
<property name="plugin_classpath" refid="maven.plugin.classpath" />
<property name="compile_classpath" refid="maven.compile.classpath"/>
<property name="runtime_classpath" refid="maven.runtime.classpath"/>
<property name="test_classpath" refid="maven.test.classpath"/>
<property name="plugin_classpath" refid="maven.plugin.classpath"/>

<property name="findbugs.home"
value="${project.build.directory}/findbugs" />
<property name="findbugs.home" value="${project.build.directory}/findbugs"/>

<java classname="edu.umd.cs.findbugs.FindBugs2"
failonerror="true" timeout="1800000" fork="true">
<java classname="edu.umd.cs.findbugs.FindBugs2" failonerror="true" timeout="1800000" fork="true">
<classpath>
<pathelement path="${compile_classpath}" />
<pathelement path="${compile_classpath}"/>
</classpath>
<arg value="-xml:withMessages" />
<arg value="-output" />
<arg
value="${project.build.directory}/findbugsJavaCheckAll.xml" />
<arg value="-projectName" />
<arg value="FindBugsTestCases" />
<arg value="-xml:withMessages"/>
<arg value="-output"/>
<arg value="${project.build.directory}/findbugsJavaCheckAll.xml"/>
<arg value="-projectName"/>
<arg value="FindBugsTestCases"/>
<!-- <arg value="${maven.compile.classpath}" /> -->
<arg value="${project.build.outputDirectory}" />
<arg value="${project.build.outputDirectory}"/>
<!-- <auxClasspath location="${compile_classpath}" /> -->
</java>

Expand Down