Tomasz Golabek | 967a120 | 2019-03-19 11:37:28 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | <modelVersion>4.0.0</modelVersion> |
| 6 | |
| 7 | <parent> |
| 8 | <groupId>org.onap.sdc.common</groupId> |
| 9 | <artifactId>onap-generic-artifact-browser</artifactId> |
Ofir Sonsino | 09d8789 | 2020-03-12 20:52:42 +0200 | [diff] [blame^] | 10 | <version>1.7.0-SNAPSHOT</version> |
Tomasz Golabek | 967a120 | 2019-03-19 11:37:28 +0100 | [diff] [blame] | 11 | </parent> |
| 12 | |
| 13 | <artifactId>onap-generic-artifact-browser-service</artifactId> |
| 14 | |
| 15 | <properties> |
Tomasz Golabek | 967a120 | 2019-03-19 11:37:28 +0100 | [diff] [blame] | 16 | <lombok.version>1.18.2</lombok.version> |
| 17 | <snakeyaml.version>1.21</snakeyaml.version> |
| 18 | <jsurfer.version>1.4.3</jsurfer.version> |
Tomasz Golabek | a490dfc | 2019-04-23 16:26:08 +0200 | [diff] [blame] | 19 | <jacoco.skip>false</jacoco.skip> |
Tomasz Golabek | 967a120 | 2019-03-19 11:37:28 +0100 | [diff] [blame] | 20 | </properties> |
| 21 | |
| 22 | <dependencies> |
| 23 | <dependency> |
| 24 | <groupId>org.projectlombok</groupId> |
| 25 | <artifactId>lombok</artifactId> |
| 26 | <version>${lombok.version}</version> |
| 27 | <scope>provided</scope> |
| 28 | </dependency> |
| 29 | <dependency> |
| 30 | <groupId>org.yaml</groupId> |
| 31 | <artifactId>snakeyaml</artifactId> |
| 32 | <version>${snakeyaml.version}</version> |
| 33 | </dependency> |
| 34 | <dependency> |
| 35 | <groupId>com.google.code.gson</groupId> |
| 36 | <artifactId>gson</artifactId> |
| 37 | <version>${gson.version}</version> |
| 38 | </dependency> |
| 39 | <dependency> |
| 40 | <groupId>com.github.jsurfer</groupId> |
| 41 | <artifactId>jsurfer-gson</artifactId> |
| 42 | <version>${jsurfer.version}</version> |
| 43 | </dependency> |
| 44 | <dependency> |
| 45 | <groupId>com.google.guava</groupId> |
| 46 | <artifactId>guava</artifactId> |
| 47 | <version>${guava.version}</version> |
| 48 | </dependency> |
| 49 | <dependency> |
| 50 | <groupId>commons-io</groupId> |
| 51 | <artifactId>commons-io</artifactId> |
| 52 | <version>${commons.io.version}</version> |
| 53 | </dependency> |
| 54 | |
Tomasz Golabek | 967a120 | 2019-03-19 11:37:28 +0100 | [diff] [blame] | 55 | <!--test--> |
| 56 | <dependency> |
Tomasz Golabek | 967a120 | 2019-03-19 11:37:28 +0100 | [diff] [blame] | 57 | <groupId>org.hamcrest</groupId> |
| 58 | <artifactId>hamcrest-all</artifactId> |
| 59 | <version>${hamcrest-all.version}</version> |
| 60 | <scope>test</scope> |
| 61 | </dependency> |
| 62 | <dependency> |
| 63 | <groupId>org.junit.jupiter</groupId> |
Tomasz Golabek | a490dfc | 2019-04-23 16:26:08 +0200 | [diff] [blame] | 64 | <artifactId>junit-jupiter</artifactId> |
Tomasz Golabek | 04aecc5 | 2019-04-11 11:47:50 +0200 | [diff] [blame] | 65 | <version>${junit-jupiter.version}</version> |
| 66 | <scope>test</scope> |
| 67 | </dependency> |
Tomasz Golabek | 967a120 | 2019-03-19 11:37:28 +0100 | [diff] [blame] | 68 | </dependencies> |
| 69 | |
| 70 | <build> |
Tomasz Golabek | 967a120 | 2019-03-19 11:37:28 +0100 | [diff] [blame] | 71 | <plugins> |
| 72 | <plugin> |
| 73 | <groupId>org.apache.maven.plugins</groupId> |
| 74 | <artifactId>maven-compiler-plugin</artifactId> |
| 75 | <configuration> |
| 76 | <source>8</source> |
| 77 | <target>8</target> |
| 78 | </configuration> |
| 79 | </plugin> |
Tomasz Golabek | a490dfc | 2019-04-23 16:26:08 +0200 | [diff] [blame] | 80 | <plugin> |
| 81 | <groupId>org.apache.maven.plugins</groupId> |
| 82 | <artifactId>maven-surefire-plugin</artifactId> |
| 83 | <version>${maven-surefire-plugin.version}</version> |
| 84 | </plugin> |
Tomasz Golabek | 967a120 | 2019-03-19 11:37:28 +0100 | [diff] [blame] | 85 | </plugins> |
| 86 | </build> |
| 87 | |
| 88 | </project> |