Skip to content

Commit 3ef1924

Browse files
committed
add tern.eclipse.ide.set.ternjavadev.feature Tern.java Development
Resources .Features Set with tern.eclipse.ide.server.nodejs.embed.source tern-feature.source tern-jsdt-feature.source tern-server-nodejs-feature.source tern.eclipse.ide.tools.feature.source tern-linters-feature.source this commit is not clean: it includes some features.xml from not related modules. Those files were not modified however EGit marked them modified and I ocasionally commited with the last commit and don't know how to remove some files from git commit (git reset --soft HEAD^ dit not help)
1 parent 8da4c7b commit 3ef1924

File tree

19 files changed

+1015
-340
lines changed

19 files changed

+1015
-340
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ you will see contentassist available for JavaScript :
2828

2929
![SWT Tern Editor](https://github.com/angelozerr/tern.java/wiki/images/SWTTernEditor.png)
3030

31-
## Eclipse IDE
31+
## Tern (Eclipse) IDE
3232

3333
On top of `core` module
3434
Tern.java provides an Eclipse IDE integration with Tern. For more information please read [Tern Eclipse IDE](https://github.com/angelozerr/tern.java/wiki/Tern-Eclipse-IDE).
@@ -44,6 +44,10 @@ see wiki pages [Tern-Toolings](https://github.com/angelozerr/tern.java/wiki/Tern
4444
[Tern-Console](https://github.com/angelozerr/tern.java/wiki/Tern-Console) and
4545
[Debugging](https://github.com/angelozerr/tern.java/wiki/Debugging-tern.js-with-Nodeclipse).
4646

47+
## Tern.java Development Resources
48+
49+
Currently only bundled sources on all tern.java modules, see [#215](https://github.com/angelozerr/tern.java/pull/215).
50+
4751
# Who is using tern.java?
4852

4953
* [JBoss Studio](http://www.jboss.org/products/devstudio/overview/) for :

core/tern.core/.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
/bin
2-
/target
1+
node_modules
2+
metadata

update-site/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
<module>tern-linters-feature</module>
1818
<module>tern.eclipse.ide.set.ternide.feature</module>
1919
<module>tern.eclipse.ide.set.terntooling.feature</module>
20+
<module>tern.eclipse.ide.set.ternjavadev.feature</module>
2021
<module>tern.repository</module>
2122
</modules>
2223
</project>
Lines changed: 61 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -1,61 +1,61 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<feature
3-
id="tern-feature"
4-
label="%featureName"
5-
version="0.9.0.qualifier"
6-
provider-name="%featureProvider"
7-
license-feature="org.eclipse.license"
8-
license-feature-version="1.0.0.qualifier">
9-
10-
<description>
11-
%description
12-
</description>
13-
14-
<copyright>
15-
%copyright
16-
</copyright>
17-
18-
<license url="%licenseURL">
19-
%license
20-
</license>
21-
22-
<requires>
23-
<import plugin="minimal-json"/>
24-
</requires>
25-
26-
<plugin
27-
id="ternjs"
28-
download-size="0"
29-
install-size="0"
30-
version="0.0.0"
31-
unpack="false"/>
32-
33-
<plugin
34-
id="tern.eclipse.ide.ui"
35-
download-size="0"
36-
install-size="0"
37-
version="0.0.0"
38-
unpack="false"/>
39-
40-
<plugin
41-
id="tern.eclipse"
42-
download-size="0"
43-
install-size="0"
44-
version="0.0.0"
45-
unpack="false"/>
46-
47-
<plugin
48-
id="tern.core"
49-
download-size="0"
50-
install-size="0"
51-
version="0.0.0"
52-
unpack="false"/>
53-
54-
<plugin
55-
id="tern.eclipse.ide.core"
56-
download-size="0"
57-
install-size="0"
58-
version="0.0.0"
59-
unpack="false"/>
60-
61-
</feature>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<feature
3+
id="tern-feature"
4+
label="%featureName"
5+
version="0.9.0.qualifier"
6+
provider-name="%featureProvider"
7+
license-feature="org.eclipse.license"
8+
license-feature-version="1.0.0.qualifier">
9+
10+
<description>
11+
%description
12+
</description>
13+
14+
<copyright>
15+
%copyright
16+
</copyright>
17+
18+
<license url="%licenseURL">
19+
%license
20+
</license>
21+
22+
<requires>
23+
<import plugin="minimal-json"/>
24+
</requires>
25+
26+
<plugin
27+
id="ternjs"
28+
download-size="0"
29+
install-size="0"
30+
version="0.0.0"
31+
unpack="false"/>
32+
33+
<plugin
34+
id="tern.eclipse.ide.ui"
35+
download-size="0"
36+
install-size="0"
37+
version="0.0.0"
38+
unpack="false"/>
39+
40+
<plugin
41+
id="tern.eclipse"
42+
download-size="0"
43+
install-size="0"
44+
version="0.0.0"
45+
unpack="false"/>
46+
47+
<plugin
48+
id="tern.core"
49+
download-size="0"
50+
install-size="0"
51+
version="0.0.0"
52+
unpack="false"/>
53+
54+
<plugin
55+
id="tern.eclipse.ide.core"
56+
download-size="0"
57+
install-size="0"
58+
version="0.0.0"
59+
unpack="false"/>
60+
61+
</feature>
Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<feature
3-
id="tern-jsdt-feature"
4-
label="%featureName"
5-
version="0.9.0.qualifier"
6-
provider-name="%featureProvider"
7-
license-feature="org.eclipse.license"
8-
license-feature-version="1.0.0.qualifier">
9-
10-
<description>
11-
%description
12-
</description>
13-
14-
<copyright>
15-
%copyright
16-
</copyright>
17-
18-
<license url="%licenseURL">
19-
%license
20-
</license>
21-
22-
<plugin
23-
id="tern.eclipse.ide.jsdt"
24-
download-size="0"
25-
install-size="0"
26-
version="0.0.0"
27-
unpack="false"/>
28-
29-
</feature>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<feature
3+
id="tern-jsdt-feature"
4+
label="%featureName"
5+
version="0.9.0.qualifier"
6+
provider-name="%featureProvider"
7+
license-feature="org.eclipse.license"
8+
license-feature-version="1.0.0.qualifier">
9+
10+
<description>
11+
%description
12+
</description>
13+
14+
<copyright>
15+
%copyright
16+
</copyright>
17+
18+
<license url="%licenseURL">
19+
%license
20+
</license>
21+
22+
<plugin
23+
id="tern.eclipse.ide.jsdt"
24+
download-size="0"
25+
install-size="0"
26+
version="0.0.0"
27+
unpack="false"/>
28+
29+
</feature>
Lines changed: 54 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,54 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<feature
3-
id="tern-linters-feature"
4-
label="%featureName"
5-
version="0.9.0.qualifier"
6-
provider-name="%featureProvider"
7-
license-feature="org.eclipse.license"
8-
license-feature-version="1.0.0.qualifier">
9-
10-
<description>
11-
%description
12-
</description>
13-
14-
<copyright>
15-
%copyright
16-
</copyright>
17-
18-
<license url="%licenseURL">
19-
%license
20-
</license>
21-
22-
<requires>
23-
<import plugin="minimal-json"/>
24-
</requires>
25-
26-
<plugin
27-
id="tern.eclipse.ide.linter.core"
28-
download-size="0"
29-
install-size="0"
30-
version="0.0.0"
31-
unpack="false"/>
32-
33-
<plugin
34-
id="tern.eclipse.ide.linter.ui"
35-
download-size="0"
36-
install-size="0"
37-
version="0.0.0"
38-
unpack="false"/>
39-
40-
<plugin
41-
id="tern.eclipse.ide.linter.jshint.core"
42-
download-size="0"
43-
install-size="0"
44-
version="0.0.0"
45-
unpack="false"/>
46-
47-
<plugin
48-
id="tern.eclipse.ide.linter.jshint.ui"
49-
download-size="0"
50-
install-size="0"
51-
version="0.0.0"
52-
unpack="false"/>
53-
54-
</feature>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<feature
3+
id="tern-linters-feature"
4+
label="%featureName"
5+
version="0.9.0.qualifier"
6+
provider-name="%featureProvider"
7+
license-feature="org.eclipse.license"
8+
license-feature-version="1.0.0.qualifier">
9+
10+
<description>
11+
%description
12+
</description>
13+
14+
<copyright>
15+
%copyright
16+
</copyright>
17+
18+
<license url="%licenseURL">
19+
%license
20+
</license>
21+
22+
<requires>
23+
<import plugin="minimal-json"/>
24+
</requires>
25+
26+
<plugin
27+
id="tern.eclipse.ide.linter.core"
28+
download-size="0"
29+
install-size="0"
30+
version="0.0.0"
31+
unpack="false"/>
32+
33+
<plugin
34+
id="tern.eclipse.ide.linter.ui"
35+
download-size="0"
36+
install-size="0"
37+
version="0.0.0"
38+
unpack="false"/>
39+
40+
<plugin
41+
id="tern.eclipse.ide.linter.jshint.core"
42+
download-size="0"
43+
install-size="0"
44+
version="0.0.0"
45+
unpack="false"/>
46+
47+
<plugin
48+
id="tern.eclipse.ide.linter.jshint.ui"
49+
download-size="0"
50+
install-size="0"
51+
version="0.0.0"
52+
unpack="false"/>
53+
54+
</feature>

0 commit comments

Comments
 (0)