diff options
author | ChuanyuChen <chenchuanyu@huawei.com> | 2022-07-30 09:39:36 +0800 |
---|---|---|
committer | ChuanyuChen <chenchuanyu@huawei.com> | 2022-08-03 10:25:50 +0800 |
commit | c63412acfab7c50803bdd0dcf848b3a91b3f565f (patch) | |
tree | 6db3531941ba930e0ad5a91e8bf87b6ad4c48781 /intentanalysis/pom.xml | |
parent | 0c41af52f3f453219a0240cf54ea321829a49c0e (diff) |
Add unit test for intent analysis
Add unit test for intent analysis
Issue-ID: USECASEUI-692
Signed-off-by: ChuanyuChen <chenchuanyu@huawei.com>
Change-Id: If7c8a1ca56c1e8cc07e91729b3d2e38ddb2c855b
Diffstat (limited to 'intentanalysis/pom.xml')
-rw-r--r-- | intentanalysis/pom.xml | 71 |
1 files changed, 70 insertions, 1 deletions
diff --git a/intentanalysis/pom.xml b/intentanalysis/pom.xml index 03a4731..88c5de6 100644 --- a/intentanalysis/pom.xml +++ b/intentanalysis/pom.xml @@ -1,4 +1,19 @@ <?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (C) 2022 Huawei Technologies Co., Ltd. All rights reserved. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> @@ -24,6 +39,8 @@ <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero> <sonar.projectVersion>${project.version}</sonar.projectVersion> <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis> + <junit.vintage.version>5.9.0-RC1</junit.vintage.version> + <junit.platform.version>1.9.0-RC1</junit.platform.version> </properties> <dependencyManagement> @@ -94,8 +111,60 @@ <artifactId>javax.persistence</artifactId> <version>2.1.0</version> </dependency> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>4.13</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.junit.vintage</groupId> + <artifactId>junit-vintage-engine</artifactId> + <version>${junit.vintage.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.junit.platform</groupId> + <artifactId>junit-platform-launcher</artifactId> + <version>${junit.platform.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.junit.platform</groupId> + <artifactId>junit-platform-commons</artifactId> + <version>${junit.platform.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.junit.platform</groupId> + <artifactId>junit-platform-engine</artifactId> + <version>${junit.platform.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.jmockit</groupId> + <artifactId>jmockit</artifactId> + <version>1.19</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.jmockit</groupId> + <artifactId>jmockit-coverage</artifactId> + <version>1.19</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.mockito</groupId> + <artifactId>mockito-core</artifactId> + <version>4.4.0</version> + </dependency> + <dependency> + <groupId>com.h2database</groupId> + <artifactId>h2</artifactId> + <version>2.0.206</version> + <scope>test</scope> + </dependency> </dependencies> - <build> <plugins> <plugin> |