Timoney, Dan (dt5972) | 661e2da | 2018-08-10 15:52:20 -0400 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Timoney, Dan (dt5972) | ea65269 | 2019-01-08 15:56:26 -0500 | [diff] [blame] | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
Timoney, Dan (dt5972) | 661e2da | 2018-08-10 15:52:20 -0400 | [diff] [blame] | 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | |
| 5 | <parent> |
| 6 | <groupId>org.onap.ccsdk.parent</groupId> |
| 7 | <artifactId>odlparent-lite</artifactId> |
Timoney, Dan (dt5972) | a506efe | 2019-12-02 12:37:50 -0500 | [diff] [blame] | 8 | <version>1.5.1-SNAPSHOT</version> |
Alexis de Talhouët | 268c5e1 | 2018-09-12 15:27:33 -0400 | [diff] [blame] | 9 | <relativePath/> |
Timoney, Dan (dt5972) | 661e2da | 2018-08-10 15:52:20 -0400 | [diff] [blame] | 10 | </parent> |
| 11 | |
| 12 | <groupId>org.onap.ccsdk.distribution</groupId> |
| 13 | <artifactId>dependencies</artifactId> |
Timoney, Dan (dt5972) | 3948e2a | 2019-09-12 10:04:46 -0400 | [diff] [blame] | 14 | <version>0.7.0-SNAPSHOT</version> |
Timoney, Dan (dt5972) | 661e2da | 2018-08-10 15:52:20 -0400 | [diff] [blame] | 15 | <packaging>pom</packaging> |
| 16 | |
| 17 | <name>ccsdk-distribution:: dependencies</name> |
| 18 | |
| 19 | <properties> |
| 20 | <include.transitive.dependencies>false</include.transitive.dependencies> |
| 21 | </properties> |
| 22 | |
| 23 | <dependencies> |
| 24 | <dependency> |
Timoney, Dan (dt5972) | 1555acf | 2019-07-12 08:44:37 -0400 | [diff] [blame] | 25 | <groupId>ch.qos.logback</groupId> |
| 26 | <artifactId>logback-classic</artifactId> |
| 27 | <version>${logback.version}</version> |
Alexis de Talhouët | 268c5e1 | 2018-09-12 15:27:33 -0400 | [diff] [blame] | 28 | </dependency> |
| 29 | <dependency> |
| 30 | <groupId>ch.qos.logback</groupId> |
| 31 | <artifactId>logback-core</artifactId> |
| 32 | <version>${logback.version}</version> |
| 33 | </dependency> |
| 34 | <dependency> |
Timoney, Dan (dt5972) | 1555acf | 2019-07-12 08:44:37 -0400 | [diff] [blame] | 35 | <groupId>com.att.eelf</groupId> |
| 36 | <artifactId>eelf-core</artifactId> |
| 37 | </dependency> |
| 38 | <dependency> |
| 39 | <groupId>com.fasterxml.jackson.dataformat</groupId> |
| 40 | <artifactId>jackson-dataformat-xml</artifactId> |
| 41 | </dependency> |
| 42 | <dependency> |
| 43 | <groupId>com.fasterxml.jackson.dataformat</groupId> |
| 44 | <artifactId>jackson-dataformat-yaml</artifactId> |
| 45 | </dependency> |
| 46 | <dependency> |
| 47 | <groupId>com.fasterxml.jackson.module</groupId> |
| 48 | <artifactId>jackson-module-jsonSchema</artifactId> |
Alexis de Talhouët | 268c5e1 | 2018-09-12 15:27:33 -0400 | [diff] [blame] | 49 | </dependency> |
| 50 | <dependency> |
| 51 | <groupId>com.jayway.jsonpath</groupId> |
| 52 | <artifactId>json-path</artifactId> |
Timoney, Dan (dt5972) | 661e2da | 2018-08-10 15:52:20 -0400 | [diff] [blame] | 53 | </dependency> |
| 54 | <dependency> |
Timoney, Dan (dt5972) | b52972c | 2019-12-05 16:05:49 -0500 | [diff] [blame] | 55 | <groupId>dom4j</groupId> |
| 56 | <artifactId>dom4j</artifactId> |
| 57 | </dependency> |
| 58 | <dependency> |
Timoney, Dan (dt5972) | 661e2da | 2018-08-10 15:52:20 -0400 | [diff] [blame] | 59 | <groupId>javax</groupId> |
| 60 | <artifactId>javaee-api</artifactId> |
Timoney, Dan (dt5972) | 661e2da | 2018-08-10 15:52:20 -0400 | [diff] [blame] | 61 | </dependency> |
| 62 | <dependency> |
Timoney, Dan (dt5972) | 1555acf | 2019-07-12 08:44:37 -0400 | [diff] [blame] | 63 | <groupId>org.apache.commons</groupId> |
| 64 | <artifactId>commons-text</artifactId> |
Timoney, Dan (dt5972) | 661e2da | 2018-08-10 15:52:20 -0400 | [diff] [blame] | 65 | </dependency> |
| 66 | <dependency> |
Timoney, Dan (dt5972) | 4ec0326 | 2019-12-12 10:35:10 -0500 | [diff] [blame] | 67 | <groupId>org.apache.httpcomponents</groupId> |
| 68 | <artifactId>httpclient</artifactId> |
| 69 | </dependency> |
| 70 | <dependency> |
| 71 | <groupId>org.apache.httpcomponents</groupId> |
| 72 | <artifactId>httpcore</artifactId> |
| 73 | </dependency> |
| 74 | <dependency> |
Timoney, Dan (dt5972) | 1555acf | 2019-07-12 08:44:37 -0400 | [diff] [blame] | 75 | <groupId>org.apache.tomcat</groupId> |
| 76 | <artifactId>tomcat-jdbc</artifactId> |
Timoney, Dan (dt5972) | 661e2da | 2018-08-10 15:52:20 -0400 | [diff] [blame] | 77 | </dependency> |
Alexis de Talhouët | 268c5e1 | 2018-09-12 15:27:33 -0400 | [diff] [blame] | 78 | <dependency> |
| 79 | <groupId>org.apache.velocity</groupId> |
| 80 | <artifactId>velocity</artifactId> |
| 81 | <version>1.7</version> |
| 82 | </dependency> |
| 83 | <dependency> |
Timoney, Dan (dt5972) | c71f34b | 2019-10-04 14:39:53 -0400 | [diff] [blame] | 84 | <groupId>org.apache.velocity</groupId> |
| 85 | <artifactId>velocity-engine-core</artifactId> |
| 86 | <version>2.0</version> |
| 87 | </dependency> |
| 88 | <dependency> |
Timoney, Dan (dt5972) | b52972c | 2019-12-05 16:05:49 -0500 | [diff] [blame] | 89 | <groupId>org.codehaus.jettison</groupId> |
| 90 | <artifactId>jettison</artifactId> |
| 91 | </dependency> |
| 92 | <dependency> |
| 93 | <groupId>org.glassfish.jersey.media</groupId> |
| 94 | <artifactId>jersey-media-multipart</artifactId> |
| 95 | </dependency> |
| 96 | <dependency> |
| 97 | <groupId>org.glassfish.jersey.media</groupId> |
| 98 | <artifactId>jersey-media-sse</artifactId> |
| 99 | </dependency> |
| 100 | <dependency> |
| 101 | <groupId>org.glassfish.jersey.security</groupId> |
| 102 | <artifactId>oauth1-signature</artifactId> |
| 103 | </dependency> |
| 104 | <dependency> |
| 105 | <groupId>org.glassfish.jersey.security</groupId> |
| 106 | <artifactId>oauth1-client</artifactId> |
| 107 | </dependency> |
| 108 | <dependency> |
Timoney, Dan (dt5972) | bcc6156 | 2020-01-07 10:06:08 -0500 | [diff] [blame^] | 109 | <groupId>org.mariadb.jdbc</groupId> |
| 110 | <artifactId>mariadb-java-client</artifactId> |
| 111 | <type>jar</type> |
| 112 | </dependency> |
| 113 | <dependency> |
Timoney, Dan (dt5972) | c71f34b | 2019-10-04 14:39:53 -0400 | [diff] [blame] | 114 | <groupId>org.onap.logging-analytics</groupId> |
| 115 | <artifactId>logging-filter-base</artifactId> |
Sandeep Shah | ffd2a83 | 2019-07-12 19:27:02 -0500 | [diff] [blame] | 116 | </dependency> |
| 117 | <dependency> |
Timoney, Dan (dt5972) | 1555acf | 2019-07-12 08:44:37 -0400 | [diff] [blame] | 118 | <groupId>org.slf4j</groupId> |
| 119 | <artifactId>jcl-over-slf4j</artifactId> |
Alexis de Talhouët | 268c5e1 | 2018-09-12 15:27:33 -0400 | [diff] [blame] | 120 | </dependency> |
| 121 | <dependency> |
Timoney, Dan (dt5972) | 1555acf | 2019-07-12 08:44:37 -0400 | [diff] [blame] | 122 | <groupId>org.springframework</groupId> |
| 123 | <artifactId>spring-beans</artifactId> |
Alexis de Talhouët | 268c5e1 | 2018-09-12 15:27:33 -0400 | [diff] [blame] | 124 | </dependency> |
| 125 | <dependency> |
Timoney, Dan (dt5972) | 1555acf | 2019-07-12 08:44:37 -0400 | [diff] [blame] | 126 | <groupId>org.springframework</groupId> |
| 127 | <artifactId>spring-context</artifactId> |
| 128 | </dependency> |
| 129 | <dependency> |
| 130 | <groupId>org.springframework</groupId> |
| 131 | <artifactId>spring-jdbc</artifactId> |
| 132 | </dependency> |
| 133 | <dependency> |
| 134 | <groupId>org.springframework</groupId> |
| 135 | <artifactId>spring-web</artifactId> |
Alexis de Talhouët | 268c5e1 | 2018-09-12 15:27:33 -0400 | [diff] [blame] | 136 | </dependency> |
Timoney, Dan (dt5972) | 661e2da | 2018-08-10 15:52:20 -0400 | [diff] [blame] | 137 | </dependencies> |
| 138 | |
| 139 | <build> |
| 140 | <plugins> |
| 141 | <plugin> |
| 142 | <artifactId>maven-assembly-plugin</artifactId> |
| 143 | <version>2.6</version> |
| 144 | <executions> |
| 145 | <execution> |
| 146 | <id>maven-repo-zip</id> |
| 147 | <goals> |
| 148 | <goal>single</goal> |
| 149 | </goals> |
| 150 | <phase>package</phase> |
| 151 | <configuration> |
| 152 | <attach>true</attach> |
| 153 | <finalName>stage/dependencies-${project.version}</finalName> |
| 154 | <descriptors> |
| 155 | <descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor> |
| 156 | </descriptors> |
| 157 | <appendAssemblyId>true</appendAssemblyId> |
| 158 | </configuration> |
| 159 | </execution> |
| 160 | </executions> |
| 161 | </plugin> |
| 162 | <plugin> |
| 163 | <groupId>org.apache.maven.plugins</groupId> |
| 164 | <artifactId>maven-dependency-plugin</artifactId> |
| 165 | <executions> |
| 166 | <execution> |
| 167 | <id>copy-dependencies</id> |
| 168 | <goals> |
| 169 | <goal>copy-dependencies</goal> |
| 170 | </goals> |
| 171 | <phase>prepare-package</phase> |
| 172 | <configuration> |
| 173 | <transitive>false</transitive> |
| 174 | <outputDirectory>${project.build.directory}/assembly/system</outputDirectory> |
| 175 | <overWriteReleases>false</overWriteReleases> |
| 176 | <overWriteSnapshots>true</overWriteSnapshots> |
| 177 | <overWriteIfNewer>true</overWriteIfNewer> |
| 178 | <useRepositoryLayout>true</useRepositoryLayout> |
| 179 | <addParentPoms>false</addParentPoms> |
| 180 | <copyPom>false</copyPom> |
| 181 | <excludeGroupIds>org.onap.ccsdk.sli.core,org.opendaylight</excludeGroupIds> |
| 182 | <scope>provided</scope> |
| 183 | </configuration> |
| 184 | </execution> |
| 185 | </executions> |
| 186 | </plugin> |
| 187 | </plugins> |
| 188 | </build> |
| 189 | </project> |