Stone, Avi (as206k) | 438bdef | 2018-04-12 15:12:44 +0300 | [diff] [blame^] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 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 | <groupId>org.onap.sdc.dcae.property</groupId> |
| 5 | <artifactId>DCAE-DT-PROPERTY</artifactId> |
| 6 | <version>1806.0.1-SNAPSHOT</version> |
| 7 | <name>SystemProperty</name> |
| 8 | <description>System Properties</description> |
| 9 | <properties> |
| 10 | <!--nexus--> |
| 11 | <nexus.proxy>https://nexus.onap.org</nexus.proxy> |
| 12 | <nexus.snapshots>snapshots</nexus.snapshots> |
| 13 | <nexus.releases>releases</nexus.releases> |
| 14 | </properties> |
| 15 | <dependencies> |
| 16 | <dependency> |
| 17 | <groupId>org.springframework</groupId> |
| 18 | <artifactId>spring-beans</artifactId> |
| 19 | <version>4.3.5.RELEASE</version> |
| 20 | </dependency> |
| 21 | <dependency> |
| 22 | <groupId>org.springframework</groupId> |
| 23 | <artifactId>spring-context</artifactId> |
| 24 | <version>4.3.5.RELEASE</version> |
| 25 | </dependency> |
| 26 | <dependency> |
| 27 | <groupId>log4j</groupId> |
| 28 | <artifactId>log4j</artifactId> |
| 29 | <version>1.2.17</version> |
| 30 | </dependency> |
| 31 | <dependency> |
| 32 | <groupId>javax.servlet</groupId> |
| 33 | <artifactId>servlet-api</artifactId> |
| 34 | <version>2.3</version> |
| 35 | <scope>provided</scope> |
| 36 | </dependency> |
| 37 | <dependency> |
| 38 | <groupId>com.google.code.gson</groupId> |
| 39 | <artifactId>gson</artifactId> |
| 40 | <version>2.7</version> |
| 41 | </dependency> |
| 42 | <dependency> |
| 43 | <groupId>org.json</groupId> |
| 44 | <artifactId>json</artifactId> |
| 45 | <version>20140107</version> |
| 46 | </dependency> |
| 47 | <dependency> |
| 48 | <groupId>com.fasterxml.jackson.core</groupId> |
| 49 | <artifactId>jackson-annotations</artifactId> |
| 50 | <version>2.9.0</version> |
| 51 | </dependency> |
| 52 | <dependency> |
| 53 | <groupId>org.springframework</groupId> |
| 54 | <artifactId>spring-web</artifactId> |
| 55 | <version>4.3.5.RELEASE</version> |
| 56 | </dependency> |
| 57 | <dependency> |
| 58 | <groupId>com.fasterxml.jackson.datatype</groupId> |
| 59 | <artifactId>jackson-datatype-guava</artifactId> |
| 60 | <version>2.8.3</version> |
| 61 | </dependency> |
| 62 | <dependency> |
| 63 | <groupId>org.apache.commons</groupId> |
| 64 | <artifactId>commons-lang3</artifactId> |
| 65 | <version>3.6</version> |
| 66 | </dependency> |
| 67 | <dependency> |
| 68 | <groupId>junit</groupId> |
| 69 | <artifactId>junit</artifactId> |
| 70 | <version>4.12</version> |
| 71 | </dependency> |
| 72 | <dependency> |
| 73 | <groupId>org.slf4j</groupId> |
| 74 | <artifactId>slf4j-api</artifactId> |
| 75 | <version>1.7.10</version> |
| 76 | <scope>compile</scope> |
| 77 | </dependency> |
| 78 | <dependency> |
| 79 | <groupId>org.codehaus.groovy</groupId> |
| 80 | <artifactId>groovy</artifactId> |
| 81 | <version>2.4.13</version> |
| 82 | </dependency> |
| 83 | <dependency> |
| 84 | <groupId>org.codehaus.janino</groupId> |
| 85 | <artifactId>janino</artifactId> |
| 86 | <version>3.0.8</version> |
| 87 | </dependency> |
| 88 | </dependencies> |
| 89 | |
| 90 | <build> |
| 91 | <plugins> |
| 92 | <plugin> |
| 93 | <groupId>org.apache.maven.plugins</groupId> |
| 94 | <artifactId>maven-compiler-plugin</artifactId> |
| 95 | <version>3.5.1</version> |
| 96 | <configuration> |
| 97 | <source>1.8</source> |
| 98 | <target>1.8</target> |
| 99 | </configuration> |
| 100 | </plugin> |
| 101 | </plugins> |
| 102 | </build> |
| 103 | |
| 104 | <distributionManagement> |
| 105 | <repository> |
| 106 | <id>nexus-releases</id> |
| 107 | <name>Release Repository</name> |
| 108 | <url>${nexus.proxy}/content/repositories/${nexus.releases}/</url> |
| 109 | </repository> |
| 110 | <snapshotRepository> |
| 111 | <id>nexus-snapshots</id> |
| 112 | <name>Snapshot Repository</name> |
| 113 | <url>${nexus.proxy}/content/repositories/${nexus.snapshots}/</url> |
| 114 | </snapshotRepository> |
| 115 | <site> |
| 116 | <id>onap-site</id> |
| 117 | <url>dav:${onap.nexus.url}${sitePath}</url> |
| 118 | </site> |
| 119 | </distributionManagement> |
| 120 | |
| 121 | </project> |