8 Commits

Author SHA1 Message Date
Dmitry Toptygin
108dbc86be Merge pull request #10 from Telecominfraproject/WIFI-7556
WIFI-7556 updated spring-boot version to 2.5.12 (spring 5.3.18) to co…
2022-04-05 13:57:20 -04:00
Dmitry Toptygin
08ddb7a497 WIFI-7556 updated spring-boot version to 2.5.12 (spring 5.3.18) to cover for Springshell vulnerability 2022-04-05 13:50:29 -04:00
ralphlee3
73eddc6cab Merge pull request #9 from Telecominfraproject/WIFI-7323
[WIFI-7323] allow build and tests to work with jdk 16.0.2
2022-03-18 17:18:52 -04:00
ralphlee
61c45fbe54 [WIFI-7323] allow build and tests to work with jdk 16.0.2 2022-03-18 17:08:39 -04:00
Mike Hansen
cdd0a0cb4f Merge pull request #6 from Telecominfraproject/NETEXP-2363
NETEXP-2363 Increased SpringBoot version
2021-07-08 12:35:54 -04:00
Akshay Jagadish
090131ae36 NETEXP-2363 Increased SpringBoot version 2021-07-08 12:20:00 -04:00
norm-traxler
9480274c77 Merge pull request #5 from Telecominfraproject/WIFI-2434
WIFI 2434: Update SDK master to use image tag 1.2.0-SNAPSHOT
2021-05-26 21:08:05 -04:00
Akshay Jagadish
39bc461f7a Update SDK master to use image tag 1.2.0-SNAPSHOT 2021-05-26 18:00:02 -04:00

17
pom.xml
View File

@@ -3,20 +3,20 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.0.RELEASE</version>
<relativePath/>
<version>2.5.12</version>
<relativePath />
</parent>
<groupId>com.telecominfraproject.wlan</groupId>
<artifactId>tip-wlan-cloud-root-pom</artifactId>
<version>1.1.0-SNAPSHOT</version>
<version>1.2.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>tip-wlan-cloud-root-pom</name>
<description>Place to keep all common properties, dependencies, and settings</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<tip-wlan-cloud.release.version>1.1.0-SNAPSHOT</tip-wlan-cloud.release.version>
<tip-wlan-cloud.release.version>1.2.0-SNAPSHOT</tip-wlan-cloud.release.version>
<apache.commons.math3.version>3.6.1</apache.commons.math3.version>
<seruco.base62.version>0.1.2</seruco.base62.version>
<netflix.servo.version>0.12.17</netflix.servo.version>
@@ -50,6 +50,12 @@
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<!-- needed so that tests that are written in the Junit4 can be picked up by the test runner for the Junit5 in eclipse -->
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
@@ -145,7 +151,7 @@
<!-- id Must Match the Unique Identifier in settings.xml -->
<id>tip-wlan-cloud-maven-repo</id>
<url>https://tip.jfrog.io/artifactory/tip-wlan-cloud-maven-repo</url>
<releases/>
<releases />
</repository>
</repositories>
@@ -218,6 +224,7 @@
<testOutputDir>${project.build.directory}</testOutputDir>
</systemPropertyVariables>
<argLine>--add-exports=java.base/sun.nio.ch=ALL-UNNAMED --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/java.lang.reflect=ALL-UNNAMED --add-opens=java.base/java.io=ALL-UNNAMED --add-exports=jdk.unsupported/sun.misc=ALL-UNNAMED</argLine>
</configuration>
</plugin>
</plugins>