vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 2 | 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 | <groupId>org.openecomp.sdc</groupId> |
| 6 | <artifactId>dmaap-publisher</artifactId> |
| 7 | <version>1.0.0</version> |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 8 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 9 | <dependencies> |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 10 | <!--spock testing--> |
| 11 | <dependency> |
| 12 | <groupId>org.spockframework</groupId> |
| 13 | <artifactId>spock-core</artifactId> |
| 14 | <version>1.1-groovy-2.4</version> |
| 15 | <scope>test</scope> |
| 16 | </dependency> |
| 17 | <!--groovy--> |
| 18 | <dependency> |
| 19 | <groupId>org.codehaus.groovy</groupId> |
| 20 | <artifactId>groovy</artifactId> |
vasraz | 086406a | 2021-02-22 09:50:07 +0000 | [diff] [blame] | 21 | <version>${groovy.version}</version> |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 22 | </dependency> |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 23 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 24 | <dependency> |
| 25 | <groupId>org.apache.commons</groupId> |
| 26 | <artifactId>commons-lang3</artifactId> |
vasraz | 30b974a | 2021-05-19 18:22:12 +0100 | [diff] [blame] | 27 | <version>3.10</version> |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 28 | </dependency> |
| 29 | <dependency> |
| 30 | <groupId>com.att.nsa</groupId> |
| 31 | <artifactId>dmaapClient</artifactId> |
| 32 | <version>0.2.16</version> |
| 33 | </dependency> |
| 34 | <dependency> |
| 35 | <groupId>org.slf4j</groupId> |
| 36 | <artifactId>slf4j-api</artifactId> |
| 37 | <version>1.7.25</version> |
| 38 | </dependency> |
| 39 | <dependency> |
| 40 | <groupId>args4j</groupId> |
| 41 | <artifactId>args4j</artifactId> |
| 42 | <version>2.33</version> |
| 43 | </dependency> |
| 44 | <dependency> |
| 45 | <groupId>com.google.guava</groupId> |
| 46 | <artifactId>guava</artifactId> |
andre.schmid | f72d59b | 2021-02-25 18:00:48 +0000 | [diff] [blame] | 47 | <version>${guava.version}</version> |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 48 | </dependency> |
| 49 | <!-- https://mvnrepository.com/artifact/org.yaml/snakeyaml --> |
| 50 | <dependency> |
| 51 | <groupId>org.yaml</groupId> |
| 52 | <artifactId>snakeyaml</artifactId> |
JulienBe | b485c37 | 2020-10-28 11:50:25 -0400 | [diff] [blame] | 53 | <version>${snakeyaml.version}</version> |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 54 | </dependency> |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 55 | <dependency> |
| 56 | <groupId>org.assertj</groupId> |
| 57 | <artifactId>assertj-core</artifactId> |
| 58 | <version>3.8.0</version> |
| 59 | <scope>test</scope> |
| 60 | </dependency> |
| 61 | </dependencies> |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 62 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 63 | <build> |
| 64 | <plugins> |
| 65 | <plugin> |
| 66 | <groupId>org.apache.maven.plugins</groupId> |
| 67 | <artifactId>maven-compiler-plugin</artifactId> |
| 68 | <version>3.6.1</version> |
| 69 | <configuration> |
| 70 | <source>1.8</source> |
| 71 | <target>1.8</target> |
| 72 | </configuration> |
| 73 | </plugin> |
| 74 | <plugin> |
| 75 | <groupId>org.apache.maven.plugins</groupId> |
| 76 | <artifactId>maven-shade-plugin</artifactId> |
| 77 | <version>3.0.0</version> |
| 78 | <configuration> |
| 79 | <createDependencyReducedPom>true</createDependencyReducedPom> |
| 80 | <filters> |
| 81 | <filter> |
| 82 | <artifact>*:*</artifact> |
| 83 | <excludes> |
| 84 | <exclude>META-INF/*.SF</exclude> |
| 85 | <exclude>META-INF/*.DSA</exclude> |
| 86 | <exclude>META-INF/*.RSA</exclude> |
| 87 | </excludes> |
| 88 | </filter> |
| 89 | </filters> |
| 90 | </configuration> |
| 91 | <executions> |
| 92 | <execution> |
| 93 | <phase>package</phase> |
| 94 | <goals> |
| 95 | <goal>shade</goal> |
| 96 | </goals> |
| 97 | <configuration> |
| 98 | <transformers> |
| 99 | <transformer |
| 100 | implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/> |
| 101 | <transformer |
| 102 | implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> |
| 103 | <mainClass>org.openecomp.sdc.dmaap.DmaapPublisher</mainClass> |
| 104 | </transformer> |
| 105 | </transformers> |
| 106 | </configuration> |
| 107 | </execution> |
| 108 | </executions> |
| 109 | </plugin> |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 110 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 111 | </plugins> |
| 112 | </build> |
| 113 | </project> |