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> |
| 7 | <version>1.4.0-SNAPSHOT</version> |
| 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> |
| 38 | <pluginManagement> |
| 39 | <plugins> |
| 40 | <plugin> |
| 41 | <groupId>org.apache.maven.plugins</groupId> |
| 42 | <artifactId>maven-compiler-plugin</artifactId> |
| 43 | <version>3.3</version> |
| 44 | <configuration> |
| 45 | <source>1.8</source> |
| 46 | <target>1.8</target> |
| 47 | <fork>true</fork> |
| 48 | <compilerArgs> |
| 49 | <arg>-parameters</arg> |
| 50 | </compilerArgs> |
| 51 | </configuration> |
| 52 | </plugin> |
| 53 | </plugins> |
| 54 | </pluginManagement> |
| 55 | </build> |
| 56 | <dependencies> |
| 57 | <dependency> |
| 58 | <groupId>uk.co.blackpepper.bowman</groupId> |
| 59 | <artifactId>bowman-client</artifactId> |
| 60 | <version>0.3.0</version> |
| 61 | </dependency> |
| 62 | <dependency> |
| 63 | <groupId>org.onap.so</groupId> |
| 64 | <artifactId>common</artifactId> |
| 65 | <version>${project.version}</version> |
| 66 | </dependency> |
| 67 | <dependency> |
| 68 | <groupId>org.springframework.boot</groupId> |
| 69 | <artifactId>spring-boot-starter-data-jpa</artifactId> |
| 70 | <optional>true</optional> |
| 71 | </dependency> |
| 72 | <dependency> |
| 73 | <groupId>org.mariadb.jdbc</groupId> |
| 74 | <artifactId>mariadb-java-client</artifactId> |
| 75 | </dependency> |
| 76 | <dependency> |
| 77 | <groupId>com.openpojo</groupId> |
| 78 | <artifactId>openpojo</artifactId> |
| 79 | <version>0.8.6</version> |
| 80 | </dependency> |
| 81 | <dependency> |
| 82 | <groupId>org.springframework.boot</groupId> |
| 83 | <artifactId>spring-boot-starter-test</artifactId> |
| 84 | <scope>test</scope> |
| 85 | </dependency> |
| 86 | <dependency> |
| 87 | <groupId>ch.vorburger.mariaDB4j</groupId> |
| 88 | <artifactId>mariaDB4j</artifactId> |
| 89 | <version>2.2.3</version> |
| 90 | <scope>test</scope> |
| 91 | </dependency> |
| 92 | <dependency> |
| 93 | <groupId>org.springframework.boot</groupId> |
| 94 | <artifactId>spring-boot-starter-data-rest</artifactId> |
| 95 | </dependency> |
| 96 | <dependency> |
| 97 | <groupId>org.springframework.data</groupId> |
| 98 | <artifactId>spring-data-rest-hal-browser</artifactId> |
| 99 | </dependency> |
| 100 | <dependency> |
| 101 | <groupId>org.ow2.asm</groupId> |
| 102 | <artifactId>asm-xml</artifactId> |
| 103 | <version>6.1</version> |
| 104 | </dependency> |
| 105 | </dependencies> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 106 | </project> |