diff options
author | Ittay Stern <ittay.stern@att.com> | 2020-02-27 13:40:28 +0200 |
---|---|---|
committer | Ittay Stern <ittay.stern@att.com> | 2020-03-03 08:07:21 +0200 |
commit | 9ba4d0678396bb3d8a0b3ecbe9899bb4895e87c1 (patch) | |
tree | 842c9b40525e90db9ecececc9fa391aa5e88be66 /vid-automation | |
parent | 4e32415b9d34fcd8b18cf278b92c441e5044feab (diff) |
Bump apache plugins and dependencies to latests
Issue-ID: VID-755
Change-Id: Ia491a5c37f00e82662cb17192df4577c16994539
Signed-off-by: Ittay Stern <ittay.stern@att.com>
Diffstat (limited to 'vid-automation')
-rw-r--r-- | vid-automation/pom.xml | 56 |
1 files changed, 28 insertions, 28 deletions
diff --git a/vid-automation/pom.xml b/vid-automation/pom.xml index d633054dc..708bffb06 100644 --- a/vid-automation/pom.xml +++ b/vid-automation/pom.xml @@ -12,8 +12,8 @@ <jackson.databind.version>2.9.9.3</jackson.databind.version> <aspectj.version>1.8.10</aspectj.version> <selenium.version>3.141.59</selenium.version> - <log4j.version>2.12.0</log4j.version> - <apachehttp.version>4.4.1</apachehttp.version> + <log4j.version>2.13.0</log4j.version> + <apachehttp.version>4.5.11</apachehttp.version> </properties> @@ -68,7 +68,7 @@ <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpcore</artifactId> - <version>${apachehttp.version}</version> + <version>4.4.13</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> @@ -197,12 +197,12 @@ <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-text</artifactId> - <version>1.1</version> + <version>1.8</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> - <version>3.6</version> + <version>3.9</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> @@ -242,18 +242,18 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> - <version>3.5.1</version> + <version>3.8.1</version> <configuration> <source>1.8</source> <target>1.8</target> - <debug>true</debug> - <debuglevel>lines,vars,source</debuglevel> + <debug>true</debug> + <debuglevel>lines,vars,source</debuglevel> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> - <version>3.1.1</version> + <version>3.2.0</version> <executions> <execution> <id>create.jar.with.dependencies</id> @@ -274,25 +274,25 @@ </execution> </executions> </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-surefire-plugin</artifactId> - <version>2.22.1</version> - <configuration> - <includes> - <include>${test}</include> - </includes> - <systemPropertyVariables> - <log4j.configurationFile>./conf/log4j2.xml</log4j.configurationFile> - </systemPropertyVariables> - <suiteXmlFiles> - <suiteXmlFile>TestNg-ApiTest.xml</suiteXmlFile> - </suiteXmlFiles> - <argLine> - -javaagent:${settings.localRepository}/org/aspectj/aspectjweaver/${aspectj.version}/aspectjweaver-${aspectj.version}.jar - </argLine> - <useSystemClassLoader>false</useSystemClassLoader> - </configuration> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <version>2.22.2</version> + <configuration> + <includes> + <include>${test}</include> + </includes> + <systemPropertyVariables> + <log4j.configurationFile>./conf/log4j2.xml</log4j.configurationFile> + </systemPropertyVariables> + <suiteXmlFiles> + <suiteXmlFile>TestNg-ApiTest.xml</suiteXmlFile> + </suiteXmlFiles> + <argLine> + -javaagent:${settings.localRepository}/org/aspectj/aspectjweaver/${aspectj.version}/aspectjweaver-${aspectj.version}.jar + </argLine> + <useSystemClassLoader>false</useSystemClassLoader> + </configuration> </plugin> </plugins> </build> |