Update dependencies and add one new test

This commit is contained in:
Sean Owen 2021-04-02 11:59:49 -05:00
parent 547e58a286
commit f05963d63d
7 changed files with 26 additions and 29 deletions

View file

@ -29,17 +29,15 @@
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<configLocation>../src/checkstyle/checkstyle.xml</configLocation>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<configLocation>../src/checkstyle/checkstyle.xml</configLocation>
</configuration>
</plugin>
</plugins>
</build>
<parent>

View file

@ -29,17 +29,15 @@
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<configLocation>../src/checkstyle/checkstyle.xml</configLocation>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<configLocation>../src/checkstyle/checkstyle.xml</configLocation>
</configuration>
</plugin>
</plugins>
</build>
<parent>

View file

@ -63,7 +63,7 @@
<plugin>
<groupId>biz.aQute.bnd</groupId>
<artifactId>bnd-maven-plugin</artifactId>
<version>5.2.0</version>
<version>5.3.0</version>
<executions>
<execution>
<goals>

View file

@ -69,6 +69,7 @@ public final class WifiParsedResultTestCase extends Assert {
doTest("WIFI:T:WPA;S:test;P:my_password\\\\;;", "test", "my_password\\", "WPA");
doTest("WIFI:T:WPA;S:My_WiFi_SSID;P:abc123/;;", "My_WiFi_SSID", "abc123/", "WPA");
doTest("WIFI:T:WPA;S:\"foo\\;bar\\\\baz\";;", "\"foo;bar\\baz\"", null, "WPA");
doTest("WIFI:T:WPA;S:test;P:\\\"abcd\\\";;", "test", "\"abcd\"", "WPA");
}
/**

View file

@ -29,7 +29,7 @@
<dependency>
<groupId>com.beust</groupId>
<artifactId>jcommander</artifactId>
<version>1.78</version>
<version>1.81</version>
</dependency>
<dependency>
<groupId>com.github.jai-imageio</groupId>

View file

@ -47,7 +47,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
</dependencies>
@ -424,7 +424,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>3.1.1</version>
<version>3.1.2</version>
<configuration>
<configLocation>src/checkstyle/checkstyle.xml</configLocation>
<includeTestSourceDirectory>true</includeTestSourceDirectory>
@ -442,7 +442,7 @@
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>8.39</version>
<version>8.41.1</version>
</dependency>
</dependencies>
</plugin>

View file

@ -39,7 +39,7 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>30.1-android</version>
<version>30.1.1-android</version>
</dependency>
<dependency>
<groupId>junit</groupId>
@ -73,7 +73,7 @@
</parent>
<properties>
<spring.version>5.3.2</spring.version>
<spring.version>5.3.5</spring.version>
</properties>
<build>