Module descriptions in XML

This commit is contained in:
Andrey Breslav
2013-04-26 20:21:21 +04:00
parent 3673f8003b
commit 42505246b8
25 changed files with 833 additions and 2 deletions
@@ -0,0 +1,4 @@
name
sources=[foo]
classpath=[bar]
annotations=[baz]
@@ -0,0 +1,7 @@
<modules>
<module name="name">
<sources path="foo"/>
<classpath path="bar"/>
<externalAnnotations path="baz"/>
</module>
</modules>
@@ -0,0 +1,4 @@
name
sources=[foo, foo1, foo2]
classpath=[bar1, bar2]
annotations=[baz, baz1, baz2]
@@ -0,0 +1,16 @@
<modules>
<module name="name">
<sources path="foo"/>
<sources path="foo1"/>
<sources path="foo2"/>
<!--
<classpath path="bar"/>
-->
<classpath path="bar1"/>
<!-- sdfgadfg -->
<classpath path="bar2"/>
<externalAnnotations path="baz"/>
<externalAnnotations path="baz1"/>
<externalAnnotations path="baz2"/>
</module>
</modules>
+1
View File
@@ -0,0 +1 @@
<modules/>
@@ -0,0 +1,4 @@
name
sources=[]
classpath=[]
annotations=[]
@@ -0,0 +1,3 @@
<modules>
<module name="name"/>
</modules>
@@ -0,0 +1,4 @@
name
sources=[foo, foo1, foo2]
classpath=[bar, bar1, bar2]
annotations=[baz, baz1, baz2]
@@ -0,0 +1,13 @@
<modules>
<module name="name">
<sources path="foo"/>
<sources path="foo1"/>
<sources path="foo2"/>
<classpath path="bar"/>
<classpath path="bar1"/>
<classpath path="bar2"/>
<externalAnnotations path="baz"/>
<externalAnnotations path="baz1"/>
<externalAnnotations path="baz2"/>
</module>
</modules>
@@ -0,0 +1,4 @@
name
sources=[foo]
classpath=[]
annotations=[]
@@ -0,0 +1,5 @@
<modules>
<module name="name">
<sources path="foo"/>
</module>
</modules>
@@ -0,0 +1,8 @@
name
sources=[foo, foo1, foo2]
classpath=[bar, bar1, bar2]
annotations=[baz, baz1, baz2]
name2
sources=[2foo, 2foo1, 2foo2]
classpath=[2bar, 2bar1, 2bar2]
annotations=[2baz, 2baz1, 2baz2]
@@ -0,0 +1,24 @@
<modules>
<module name="name">
<sources path="foo"/>
<sources path="foo1"/>
<sources path="foo2"/>
<classpath path="bar"/>
<classpath path="bar1"/>
<classpath path="bar2"/>
<externalAnnotations path="baz"/>
<externalAnnotations path="baz1"/>
<externalAnnotations path="baz2"/>
</module>
<module name="name2">
<sources path="2foo"/>
<sources path="2foo1"/>
<sources path="2foo2"/>
<classpath path="2bar"/>
<classpath path="2bar1"/>
<classpath path="2bar2"/>
<externalAnnotations path="2baz"/>
<externalAnnotations path="2baz1"/>
<externalAnnotations path="2baz2"/>
</module>
</modules>