forked from jbosstools/jbosstools-jst
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
81 lines (74 loc) · 3.38 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
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.jboss.tools</groupId>
<artifactId>parent</artifactId>
<version>4.4.0.Alpha1-SNAPSHOT</version>
</parent>
<artifactId>jst</artifactId>
<name>jbosstools-jst</name>
<version>3.8.0-SNAPSHOT</version>
<packaging>pom</packaging>
<properties>
<tycho.scmUrl>scm:git:https://github.com/jbosstools/jbosstools-jst.git</tycho.scmUrl>
<tern.reqs.url>http://download.jboss.org/jbosstools/updates/requirements/tern</tern.reqs.url>
<!-- Tern is included in this project's build's update site directly, so no need to worry about updating it in target platforms or classifying it in the JBT earlyaccess.properties files
However, Tern is still Early Access in JBDS, so please ensure this file is correct, or submit a PR to get it fixed:
https://github.com/jbdevstudio/jbdevstudio-website/blob/master/content/10.0/snapshots/updates/earlyaccess.properties/master/devstudio-earlyaccess.properties
-->
<tern.version>1.0.0.201508302102</tern.version>
<tern.repo.url>${tern.reqs.url}/${tern.version}/</tern.repo.url>
<!--
Angular is on Early Access so after fetching a new version into
http://download.jboss.org/jbosstools/updates/requirements/angularjs/,
You MUST submit a PR to update AngularJS in the Early Access target platform, which will affect this file:
https://github.com/jbosstools/jbosstools-discovery/blob/master/jbtearlyaccesstarget/multiple/jbtearlyaccess-multiple.target#L10-L11
Update MANIFEST.MF in angularjs.test:
https://github.com/jbosstools/jbosstools-jst/blob/master/tests/org.jboss.tools.jst.angularjs.test/META-INF/MANIFEST.MF
These files may also be affected:
https://github.com/jbosstools/jbosstools-download.jboss.org/tree/master/jbosstools/neon/snapshots/updates/earlyaccess.properties
https://github.com/jbdevstudio/jbdevstudio-website/tree/master/content/10.0/snapshots/updates/earlyaccess.properties
Need help? See
https://github.com/jbosstools/jbosstools-devdoc/blob/master/building/target_platforms/target_platforms_dependency_mirrors.adoc and
https://github.com/jbosstools/jbosstools-devdoc/blob/master/building/target_platforms/target_platforms_updates.adoc
-->
<angularjs.repo.url>http://download.jboss.org/jbosstools/targetplatforms/jbtearlyaccesstarget/4.60.0.Alpha1-SNAPSHOT/REPO/</angularjs.repo.url>
</properties>
<modules>
<module>plugins</module>
<module>tests</module>
<module>features</module>
<module>site</module>
</modules>
<repositories>
<repository>
<id>jbosstools-base</id>
<layout>p2</layout>
<url>${jbosstools-base-site}</url>
</repository>
<repository>
<id>eclipse-tern</id>
<layout>p2</layout>
<url>${tern.repo.url}</url>
</repository>
<repository>
<id>eclipse-angularjs</id>
<layout>p2</layout>
<url>${angularjs.repo.url}</url>
</repository>
<!-- To resolve parent artifact -->
<repository>
<id>jboss-public-repository-group</id>
<name>JBoss Public Repository Group</name>
<url>http://repository.jboss.org/nexus/content/groups/public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
</project>