-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpom.xml
89 lines (77 loc) · 2.86 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!--
This file is protected by Copyright.
Please refer to the COPYRIGHT file distributed with this source distribution.
This file is part of REDHAWK IDE.
All rights reserved. This program and the accompanying materials are made available under
the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at
http://www.eclipse.org/legal/epl-v10.html.
-->
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>gov.redhawk.explorer</groupId>
<artifactId>gov.redhawk.explorer.parent</artifactId>
<version>2.3.0-SNAPSHOT</version>
<packaging>pom</packaging>
<parent>
<groupId>gov.redhawk.development.configuration</groupId>
<artifactId>parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<properties>
<buildType>SNAPSHOT</buildType>
<tycho.scmUrl>scm:git:https://github.com/RedhawkSDR/eclipse-products-gov.redhawk.explorer.product.git</tycho.scmUrl>
<nxm>http://nextmidas.techma.com/p2/nxm/updates/3.6/latest/</nxm>
<nxm-rcp>http://download.redhawksdr.org/nxm-rcp/releases/1.1</nxm-rcp>
<mil.jpeojtrs.sca>http://download.redhawksdr.org/mil.jpeojtrs.sca/releases/2.3</mil.jpeojtrs.sca>
<gov.redhawk.core>http://download.redhawksdr.org/gov.redhawk.core/releases/2.3</gov.redhawk.core>
<jacorb>http://download.redhawksdr.org/jacorb/updates/stable</jacorb>
<eclipse>http://download.eclipse.org/releases/photon/</eclipse>
<nebula>http://download.eclipse.org/nebula/releases/2.0.0/</nebula>
</properties>
<repositories>
<repository>
<id>eclipse</id>
<layout>p2</layout>
<url>${eclipse}</url>
</repository>
<repository>
<id>nxm</id>
<layout>p2</layout>
<url>${nxm}</url>
</repository>
<repository>
<id>nxm-rcp</id>
<layout>p2</layout>
<url>${nxm-rcp}</url>
</repository>
<repository>
<id>mil.jpeojtrs.sca</id>
<layout>p2</layout>
<url>${mil.jpeojtrs.sca}</url>
</repository>
<repository>
<id>gov.redhawk.core</id>
<layout>p2</layout>
<url>${gov.redhawk.core}</url>
</repository>
<repository>
<id>org.omg.jacorb</id>
<layout>p2</layout>
<url>${jacorb}</url>
</repository>
<repository>
<id>nebula</id>
<layout>p2</layout>
<url>${nebula}</url>
</repository>
</repositories>
<modules>
<module>features/gov.redhawk.explorer.feature</module>
<module>features/gov.redhawk.explorer.platform</module>
<module>features/gov.redhawk.explorer.support</module>
<module>plugins/gov.redhawk.explorer</module>
<module>releng/p2</module>
<module>releng/product</module>
</modules>
</project>