Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [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 | |
| 5 | <parent> |
| 6 | <groupId>org.openecomp.sdc</groupId> |
| 7 | <artifactId>sdc-main</artifactId> |
| 8 | <version>1.0.0-SNAPSHOT</version> |
| 9 | </parent> |
| 10 | |
| 11 | <groupId>org.openecomp.sdc.onboarding</groupId> |
| 12 | <artifactId>onboarding-fe</artifactId> |
| 13 | <name>onboarding-ui-war</name> |
| 14 | |
| 15 | <packaging>war</packaging> |
| 16 | |
| 17 | <build> |
| 18 | <plugins> |
| 19 | <plugin> |
| 20 | <artifactId>maven-war-plugin</artifactId> |
| 21 | <configuration> |
| 22 | <webXml>webapp-onboarding\WEB-INF\web.xml</webXml> |
| 23 | </configuration> |
| 24 | </plugin> |
| 25 | </plugins> |
| 26 | </build> |
| 27 | |
| 28 | <profiles> |
| 29 | <profile> |
| 30 | <id>rackspace</id> |
| 31 | <activation> |
| 32 | <activeByDefault>true</activeByDefault> |
| 33 | </activation> |
| 34 | <repositories> |
| 35 | <repository> |
| 36 | <id>rackspace-public</id> |
| 37 | <name>Rackspace</name> |
| 38 | <url>https://10.208.197.75:8443/repository/maven-public/</url> |
| 39 | <layout>default</layout> |
| 40 | </repository> |
| 41 | |
| 42 | <repository> |
| 43 | <id>virtuos</id> |
| 44 | <name>Virtuos</name> |
| 45 | <url>http://nexus.virtuos.uos.de/nexus/content/repositories/public/</url> |
| 46 | <layout>default</layout> |
| 47 | </repository> |
| 48 | |
| 49 | <repository> |
| 50 | <id>apache-public</id> |
| 51 | <name>Apache-Public</name> |
| 52 | <url>https://repository.apache.org/content/groups/public/</url> |
| 53 | <layout>default</layout> |
| 54 | </repository> |
| 55 | |
| 56 | <repository> |
| 57 | <id>elasticsearch-releases</id> |
| 58 | <url>https://maven.elasticsearch.org/releases</url> |
| 59 | <releases> |
| 60 | <enabled>true</enabled> |
| 61 | </releases> |
| 62 | <snapshots> |
| 63 | <enabled>false</enabled> |
| 64 | </snapshots> |
| 65 | </repository> |
| 66 | </repositories> |
| 67 | |
| 68 | <distributionManagement> |
| 69 | <snapshotRepository> |
| 70 | <id>rackspace-snapshots</id> |
| 71 | <name>Rackspace-Snapshots</name> |
| 72 | <url>https://10.208.197.75:8443/repository/maven-snapshots/</url> |
| 73 | </snapshotRepository> |
| 74 | |
| 75 | <repository> |
| 76 | <id>rackspace-public</id> |
| 77 | <name>Rackspace</name> |
| 78 | <url>https://10.208.197.75:8443/repository/maven-releases/</url> |
| 79 | </repository> |
| 80 | </distributionManagement> |
| 81 | </profile> |
| 82 | </profiles> |
| 83 | |
| 84 | </project> |