Benjamin, Max (mb388a) | 6fa3d2b | 2018-09-29 10:41:54 -0400 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | <parent> |
| 5 | <groupId>org.onap.so</groupId> |
| 6 | <artifactId>so</artifactId> |
Lukasz Rajewski | 6f1ea87 | 2023-06-12 14:35:34 +0000 | [diff] [blame] | 7 | <version>1.13.0-SNAPSHOT</version> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 8 | </parent> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 9 | |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 10 | <artifactId>mso-catalog-db</artifactId> |
| 11 | <name>mso-catalog-db</name> |
| 12 | <description>MSO Catalog Database definition and Hibernate objects</description> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 13 | |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 14 | <build> |
| 15 | <finalName>${project.artifactId}</finalName> |
| 16 | <plugins> |
| 17 | <plugin> |
| 18 | <groupId>org.apache.maven.plugins</groupId> |
| 19 | <artifactId>maven-jar-plugin</artifactId> |
| 20 | <executions> |
| 21 | <execution> |
| 22 | <phase>package</phase> |
| 23 | <goals> |
| 24 | <goal>jar</goal> |
| 25 | </goals> |
| 26 | <configuration> |
| 27 | <classifier>beans</classifier> |
| 28 | <includes> |
| 29 | <include>**/beans/*</include> |
| 30 | <include>**/macro/*</include> |
| 31 | <include>**/utils/*</include> |
| 32 | </includes> |
| 33 | </configuration> |
| 34 | </execution> |
| 35 | </executions> |
| 36 | </plugin> |
| 37 | </plugins> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 38 | </build> |
| 39 | <dependencies> |
| 40 | <dependency> |
| 41 | <groupId>uk.co.blackpepper.bowman</groupId> |
| 42 | <artifactId>bowman-client</artifactId> |
Benjamin, Max | 9868f17 | 2020-05-18 16:37:51 -0400 | [diff] [blame] | 43 | <version>${bowman.client.version}</version> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 44 | </dependency> |
| 45 | <dependency> |
| 46 | <groupId>org.onap.so</groupId> |
| 47 | <artifactId>common</artifactId> |
| 48 | <version>${project.version}</version> |
| 49 | </dependency> |
| 50 | <dependency> |
| 51 | <groupId>org.springframework.boot</groupId> |
| 52 | <artifactId>spring-boot-starter-data-jpa</artifactId> |
| 53 | <optional>true</optional> |
| 54 | </dependency> |
| 55 | <dependency> |
| 56 | <groupId>org.mariadb.jdbc</groupId> |
| 57 | <artifactId>mariadb-java-client</artifactId> |
| 58 | </dependency> |
| 59 | <dependency> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 60 | <groupId>org.springframework.boot</groupId> |
| 61 | <artifactId>spring-boot-starter-test</artifactId> |
| 62 | <scope>test</scope> |
| 63 | </dependency> |
| 64 | <dependency> |
| 65 | <groupId>ch.vorburger.mariaDB4j</groupId> |
| 66 | <artifactId>mariaDB4j</artifactId> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 67 | <scope>test</scope> |
| 68 | </dependency> |
| 69 | <dependency> |
| 70 | <groupId>org.springframework.boot</groupId> |
| 71 | <artifactId>spring-boot-starter-data-rest</artifactId> |
| 72 | </dependency> |
| 73 | <dependency> |
| 74 | <groupId>org.springframework.data</groupId> |
| 75 | <artifactId>spring-data-rest-hal-browser</artifactId> |
shashikanth.vh@huawei.com | f45203d | 2021-08-05 20:52:50 +0530 | [diff] [blame] | 76 | <version>3.3.9.RELEASE</version> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 77 | </dependency> |
| 78 | <dependency> |
| 79 | <groupId>org.ow2.asm</groupId> |
| 80 | <artifactId>asm-xml</artifactId> |
| 81 | <version>6.1</version> |
| 82 | </dependency> |
Ubuntu | 8c02dcc | 2020-01-07 22:08:38 +0800 | [diff] [blame] | 83 | <dependency> |
| 84 | <groupId>org.glassfish.jersey.core</groupId> |
| 85 | <artifactId>jersey-common</artifactId> |
| 86 | <scope>test</scope> |
| 87 | </dependency> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 88 | </dependencies> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 89 | </project> |