Timoney, Dan (dt5972) | 661e2da | 2018-08-10 15:52:20 -0400 | [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>odlparent-lite</artifactId> |
| 9 | <version>1.1.0-SNAPSHOT</version> |
| 10 | <relativePath /> |
| 11 | </parent> |
| 12 | |
| 13 | <groupId>org.onap.ccsdk.distribution</groupId> |
| 14 | <artifactId>dependencies</artifactId> |
| 15 | <version>0.3.0-SNAPSHOT</version> |
| 16 | <packaging>pom</packaging> |
| 17 | |
| 18 | <name>ccsdk-distribution:: dependencies</name> |
| 19 | |
| 20 | <properties> |
| 21 | <include.transitive.dependencies>false</include.transitive.dependencies> |
| 22 | </properties> |
| 23 | |
| 24 | <dependencies> |
| 25 | <dependency> |
| 26 | <groupId>org.slf4j</groupId> |
| 27 | <artifactId>jcl-over-slf4j</artifactId> |
| 28 | <version>${slf4j.version}</version> |
| 29 | </dependency> |
| 30 | <dependency> |
| 31 | <groupId>org.apache.tomcat</groupId> |
| 32 | <artifactId>tomcat-jdbc</artifactId> |
| 33 | <version>${tomcat-jdbc.version}</version> |
| 34 | </dependency> |
| 35 | <dependency> |
| 36 | <groupId>com.att.eelf</groupId> |
| 37 | <artifactId>eelf-core</artifactId> |
| 38 | </dependency> |
| 39 | <dependency> |
| 40 | <groupId>ch.qos.logback</groupId> |
| 41 | <artifactId>logback-core</artifactId> |
| 42 | <version>${logback.version}</version> |
| 43 | </dependency> |
| 44 | <dependency> |
| 45 | <groupId>ch.qos.logback</groupId> |
| 46 | <artifactId>logback-classic</artifactId> |
| 47 | <version>${logback.version}</version> |
| 48 | </dependency> |
| 49 | <dependency> |
| 50 | <groupId>org.apache.commons</groupId> |
| 51 | <artifactId>commons-text</artifactId> |
| 52 | <version>1.1</version> |
| 53 | </dependency> |
| 54 | <dependency> |
| 55 | <groupId>javax</groupId> |
| 56 | <artifactId>javaee-api</artifactId> |
| 57 | <version>7.0</version> |
| 58 | </dependency> |
| 59 | <dependency> |
| 60 | <groupId>org.springframework</groupId> |
| 61 | <artifactId>spring-beans</artifactId> |
| 62 | <version>${spring.version}</version> |
| 63 | </dependency> |
| 64 | <dependency> |
| 65 | <groupId>org.springframework</groupId> |
| 66 | <artifactId>spring-context</artifactId> |
| 67 | <version>${spring.version}</version> |
| 68 | </dependency> |
| 69 | <dependency> |
| 70 | <groupId>org.springframework</groupId> |
| 71 | <artifactId>spring-jdbc</artifactId> |
| 72 | <version>${spring.version}</version> |
| 73 | </dependency> |
| 74 | </dependencies> |
| 75 | |
| 76 | <build> |
| 77 | <plugins> |
| 78 | <plugin> |
| 79 | <artifactId>maven-assembly-plugin</artifactId> |
| 80 | <version>2.6</version> |
| 81 | <executions> |
| 82 | <execution> |
| 83 | <id>maven-repo-zip</id> |
| 84 | <goals> |
| 85 | <goal>single</goal> |
| 86 | </goals> |
| 87 | <phase>package</phase> |
| 88 | <configuration> |
| 89 | <attach>true</attach> |
| 90 | <finalName>stage/dependencies-${project.version}</finalName> |
| 91 | <descriptors> |
| 92 | <descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor> |
| 93 | </descriptors> |
| 94 | <appendAssemblyId>true</appendAssemblyId> |
| 95 | </configuration> |
| 96 | </execution> |
| 97 | </executions> |
| 98 | </plugin> |
| 99 | <plugin> |
| 100 | <groupId>org.apache.maven.plugins</groupId> |
| 101 | <artifactId>maven-dependency-plugin</artifactId> |
| 102 | <executions> |
| 103 | <execution> |
| 104 | <id>copy-dependencies</id> |
| 105 | <goals> |
| 106 | <goal>copy-dependencies</goal> |
| 107 | </goals> |
| 108 | <phase>prepare-package</phase> |
| 109 | <configuration> |
| 110 | <transitive>false</transitive> |
| 111 | <outputDirectory>${project.build.directory}/assembly/system</outputDirectory> |
| 112 | <overWriteReleases>false</overWriteReleases> |
| 113 | <overWriteSnapshots>true</overWriteSnapshots> |
| 114 | <overWriteIfNewer>true</overWriteIfNewer> |
| 115 | <useRepositoryLayout>true</useRepositoryLayout> |
| 116 | <addParentPoms>false</addParentPoms> |
| 117 | <copyPom>false</copyPom> |
| 118 | <excludeGroupIds>org.onap.ccsdk.sli.core,org.opendaylight</excludeGroupIds> |
| 119 | <scope>provided</scope> |
| 120 | </configuration> |
| 121 | </execution> |
| 122 | </executions> |
| 123 | </plugin> |
| 124 | </plugins> |
| 125 | </build> |
| 126 | </project> |