ToineSiebelink | c37678a | 2021-05-20 16:44:21 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | Copyright (c) 2021 Linux Foundation. |
| 5 | ================================================================================ |
| 6 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | you may not use this file except in compliance with the License. |
| 8 | You may obtain a copy of the License at |
| 9 | |
| 10 | http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | |
| 12 | Unless required by applicable law or agreed to in writing, software |
| 13 | distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | See the License for the specific language governing permissions and |
| 16 | limitations under the License. |
| 17 | ============LICENSE_END========================================================= |
| 18 | --> |
| 19 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 20 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 21 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 22 | <modelVersion>4.0.0</modelVersion> |
| 23 | <parent> |
| 24 | <groupId>org.onap.cps</groupId> |
| 25 | <artifactId>cps-parent</artifactId> |
mpriyank | 0fd4d19 | 2023-03-10 13:48:20 +0000 | [diff] [blame^] | 26 | <version>3.2.6-SNAPSHOT</version> |
ToineSiebelink | c37678a | 2021-05-20 16:44:21 +0100 | [diff] [blame] | 27 | <relativePath>../cps-parent/pom.xml</relativePath> |
| 28 | </parent> |
| 29 | |
| 30 | <artifactId>cps-path-parser</artifactId> |
| 31 | |
| 32 | <build> |
| 33 | <plugins> |
| 34 | <plugin> |
| 35 | <groupId>org.antlr</groupId> |
| 36 | <artifactId>antlr4-maven-plugin</artifactId> |
Lathish | 3a13b2e | 2022-04-12 14:39:02 +0100 | [diff] [blame] | 37 | <version>4.9.2</version> |
ToineSiebelink | c37678a | 2021-05-20 16:44:21 +0100 | [diff] [blame] | 38 | <executions> |
| 39 | <execution> |
| 40 | <goals> |
| 41 | <goal>antlr4</goal> |
| 42 | </goals> |
| 43 | </execution> |
| 44 | </executions> |
| 45 | </plugin> |
| 46 | </plugins> |
| 47 | </build> |
| 48 | |
| 49 | <dependencies> |
| 50 | <dependency> |
| 51 | <groupId>org.antlr</groupId> |
| 52 | <artifactId>antlr4-runtime</artifactId> |
| 53 | </dependency> |
| 54 | <dependency> |
| 55 | <groupId>org.projectlombok</groupId> |
| 56 | <artifactId>lombok</artifactId> |
| 57 | </dependency> |
| 58 | <!-- T E S T D E P E N D E N C I E S --> |
| 59 | <dependency> |
| 60 | <groupId>org.codehaus.groovy</groupId> |
| 61 | <artifactId>groovy</artifactId> |
| 62 | <scope>test</scope> |
| 63 | </dependency> |
| 64 | <dependency> |
| 65 | <groupId>org.spockframework</groupId> |
| 66 | <artifactId>spock-core</artifactId> |
| 67 | <scope>test</scope> |
| 68 | </dependency> |
| 69 | <dependency> |
| 70 | <groupId>org.spockframework</groupId> |
| 71 | <artifactId>spock-spring</artifactId> |
| 72 | <scope>test</scope> |
| 73 | </dependency> |
| 74 | <dependency> |
| 75 | <groupId>cglib</groupId> |
| 76 | <artifactId>cglib-nodep</artifactId> |
| 77 | <scope>test</scope> |
| 78 | </dependency> |
| 79 | <dependency> |
| 80 | <groupId>org.springframework.boot</groupId> |
| 81 | <artifactId>spring-boot-starter-test</artifactId> |
| 82 | <scope>test</scope> |
| 83 | <exclusions> |
| 84 | <exclusion> |
| 85 | <groupId>org.junit.vintage</groupId> |
| 86 | <artifactId>junit-vintage-engine</artifactId> |
| 87 | </exclusion> |
| 88 | </exclusions> |
| 89 | </dependency> |
| 90 | </dependencies> |
| 91 | |
ToineSiebelink | 83e5055 | 2022-12-23 10:11:38 +0000 | [diff] [blame] | 92 | <profiles> |
| 93 | <profile> |
| 94 | <id>default</id> |
| 95 | <activation> |
| 96 | <activeByDefault>true</activeByDefault> |
| 97 | </activation> |
| 98 | <build> |
| 99 | <plugins> |
| 100 | <plugin> |
| 101 | <groupId>org.apache.maven.plugins</groupId> |
| 102 | <artifactId>maven-surefire-plugin</artifactId> |
| 103 | <configuration> |
| 104 | <excludes> |
| 105 | <exclude>%regex[.*PerfTest.*]</exclude> |
| 106 | </excludes> |
| 107 | </configuration> |
| 108 | </plugin> |
| 109 | </plugins> |
| 110 | </build> |
| 111 | </profile> |
| 112 | <profile> |
| 113 | <id>include-performance</id> |
| 114 | </profile> |
| 115 | </profiles> |
| 116 | |
ToineSiebelink | c37678a | 2021-05-20 16:44:21 +0100 | [diff] [blame] | 117 | </project> |