Dan Timoney | 131cb46 | 2018-02-01 16:57:00 -0500 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | <modelVersion>4.0.0</modelVersion> |
| 5 | |
| 6 | <parent> |
| 7 | <groupId>org.onap.ccsdk.parent</groupId> |
| 8 | <artifactId>single-feature-parent</artifactId> |
Timoney, Dan (dt5972) | 1a71779 | 2018-06-06 13:44:30 -0400 | [diff] [blame^] | 9 | <version>1.1.0-SNAPSHOT</version> |
Dan Timoney | 131cb46 | 2018-02-01 16:57:00 -0500 | [diff] [blame] | 10 | <relativePath /> |
| 11 | </parent> |
| 12 | |
| 13 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 14 | <artifactId>ccsdk-dblib</artifactId> |
Timoney, Dan (dt5972) | 1a71779 | 2018-06-06 13:44:30 -0400 | [diff] [blame^] | 15 | <version>0.3.0-SNAPSHOT</version> |
Dan Timoney | 131cb46 | 2018-02-01 16:57:00 -0500 | [diff] [blame] | 16 | <packaging>feature</packaging> |
| 17 | |
| 18 | <name>ccsdk-sli-core :: dblib :: ${project.artifactId}</name> |
| 19 | |
| 20 | <dependencyManagement> |
| 21 | <dependencies> |
| 22 | <dependency> |
| 23 | <groupId>org.opendaylight.mdsal.model</groupId> |
| 24 | <artifactId>mdsal-model-artifacts</artifactId> |
| 25 | <version>0.11.1</version> |
| 26 | <type>pom</type> |
| 27 | <scope>import</scope> |
| 28 | </dependency> |
| 29 | <dependency> |
| 30 | <groupId>org.opendaylight.controller</groupId> |
| 31 | <artifactId>mdsal-artifacts</artifactId> |
| 32 | <version>1.6.1</version> |
| 33 | <type>pom</type> |
| 34 | <scope>import</scope> |
| 35 | </dependency> |
| 36 | </dependencies> |
| 37 | </dependencyManagement> |
| 38 | <dependencies> |
| 39 | <dependency> |
| 40 | <groupId>org.opendaylight.controller</groupId> |
| 41 | <artifactId>odl-mdsal-broker</artifactId> |
| 42 | <type>xml</type> |
| 43 | <classifier>features</classifier> |
| 44 | </dependency> |
| 45 | |
| 46 | <dependency> |
| 47 | <groupId>${project.groupId}</groupId> |
| 48 | <artifactId>dblib-provider</artifactId> |
| 49 | <version>${project.version}</version> |
| 50 | </dependency> |
| 51 | |
| 52 | <dependency> |
| 53 | <groupId>org.mariadb.jdbc</groupId> |
| 54 | <artifactId>mariadb-java-client</artifactId> |
| 55 | <version>${mariadb.connector.version}</version> |
| 56 | </dependency> |
| 57 | <dependency> |
| 58 | <groupId>org.apache.tomcat</groupId> |
| 59 | <artifactId>tomcat-jdbc</artifactId> |
| 60 | <version>${tomcat-jdbc.version}</version> |
| 61 | </dependency> |
| 62 | <dependency> |
| 63 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 64 | <artifactId>utils-provider</artifactId> |
| 65 | <version>${project.version}</version> |
| 66 | </dependency> |
| 67 | <dependency> |
| 68 | <groupId>equinoxSDK381</groupId> |
| 69 | <artifactId>org.eclipse.osgi</artifactId> |
| 70 | <version>${equinox.osgi.version}</version> |
| 71 | <scope>provided</scope> |
| 72 | </dependency> |
| 73 | <dependency> |
| 74 | <groupId>org.apache.derby</groupId> |
| 75 | <artifactId>derby</artifactId> |
| 76 | <version>10.11.1.1</version> |
| 77 | </dependency> |
| 78 | </dependencies> |
| 79 | |
| 80 | <build> |
| 81 | <plugins> |
| 82 | <plugin> |
| 83 | <groupId>org.apache.karaf.tooling</groupId> |
| 84 | <artifactId>karaf-maven-plugin</artifactId> |
| 85 | <extensions>true</extensions> |
| 86 | <configuration> |
| 87 | <excludedArtifactIds> |
| 88 | <excludedArtifactId>slf4j-api</excludedArtifactId> |
| 89 | <excludedArtifactId>tomcat-jdbc</excludedArtifactId> |
| 90 | <excludedArtifactId>tomcat-juli</excludedArtifactId> |
| 91 | </excludedArtifactIds> |
| 92 | </configuration> |
| 93 | </plugin> |
| 94 | </plugins> |
| 95 | </build> |
| 96 | </project> |