[CJ-dev] commonjava-projects/commonjava-opl maven.xml,NONE,1.1 .classpath,1.8,1.9 project.xml,1.13,1
Brought to you by:
johnqueso
From: <joh...@co...> - 2004-02-20 21:27:32
|
Update of /cvsroot/commonjava/commonjava-projects/commonjava-opl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12005 Modified Files: .classpath project.xml .project Added Files: maven.xml Log Message: corrected versioning differences...everything is up to date. --- NEW FILE: maven.xml --- <?xml version="1.0" encoding="UTF-8"?> <project xmlns:c="jelly:core"> <preGoal name="test:test"> <c:invokeStatic className="java.lang.System" method="setProperty"> <c:arg value="opl-test-src"/> <c:arg value="${basedir}/src/test"/> </c:invokeStatic> </preGoal> </project> Index: .classpath =================================================================== RCS file: /cvsroot/commonjava/commonjava-projects/commonjava-opl/.classpath,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- .classpath 18 Feb 2004 06:12:10 -0000 1.8 +++ .classpath 20 Feb 2004 21:16:04 -0000 1.9 @@ -1,13 +1,24 @@ <?xml version="1.0" encoding="UTF-8"?> + <classpath> - <classpathentry kind="src" path="src/java"/> - <classpathentry kind="src" output="target/test-classes" path="src/test"/> - <classpathentry kind="var" path="MAVEN_REPO/junit/jars/junit-3.8.1.jar"/> - <classpathentry kind="var" path="JRE_LIB" sourcepath="JRE_SRC"/> - <classpathentry kind="var" path="MAVEN_REPO/commons-logging/jars/commons-logging-1.0.2.jar"/> - <classpathentry kind="src" path="/commonjava-io"/> - <classpathentry kind="src" path="/commonjava-lang"/> - <classpathentry kind="src" path="/commonjava-reflection"/> - <classpathentry kind="src" path="/commonjava-util"/> - <classpathentry kind="output" path="target/classes"/> -</classpath> + <classpathentry kind="src" path="src\java"> + </classpathentry> + <classpathentry output="target\test-classes" kind="src" path="src\test"> + </classpathentry> + <classpathentry kind="var" path="MAVEN_REPO/junit/jars/junit-3.8.1.jar"> + </classpathentry> + <classpathentry kind="var" rootpath="JRE_SRCROOT" path="JRE_LIB" sourcepath="JRE_SRC"> + </classpathentry> + <classpathentry kind="var" path="MAVEN_REPO/commonjava/jars/commonjava-lang-2.0-1.jar"> + </classpathentry> + <classpathentry kind="var" path="MAVEN_REPO/commonjava/jars/commonjava-io-2.0.jar"> + </classpathentry> + <classpathentry kind="var" path="MAVEN_REPO/commonjava/jars/commonjava-reflection-2.0.jar"> + </classpathentry> + <classpathentry kind="var" path="MAVEN_REPO/commonjava/jars/commonjava-util-2.0-3.jar"> + </classpathentry> + <classpathentry kind="var" path="MAVEN_REPO/commons-logging/jars/commons-logging-1.0.2.jar"> + </classpathentry> + <classpathentry kind="output" path="target\classes"> + </classpathentry> +</classpath> \ No newline at end of file Index: project.xml =================================================================== RCS file: /cvsroot/commonjava/commonjava-projects/commonjava-opl/project.xml,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- project.xml 18 Feb 2004 06:12:10 -0000 1.13 +++ project.xml 20 Feb 2004 21:16:04 -0000 1.14 @@ -51,7 +51,7 @@ <dependency> <groupId>commonjava</groupId> <artifactId>commonjava-lang</artifactId> - <version>2.0</version> + <version>2.0-1</version> <url>http://www.commonjava.org</url> </dependency> @@ -72,7 +72,7 @@ <dependency> <groupId>commonjava</groupId> <artifactId>commonjava-util</artifactId> - <version>2.0-2</version> + <version>2.0-3</version> <url>http://www.commonjava.org</url> </dependency> Index: .project =================================================================== RCS file: /cvsroot/commonjava/commonjava-projects/commonjava-opl/.project,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- .project 18 Feb 2004 06:12:10 -0000 1.2 +++ .project 20 Feb 2004 21:16:04 -0000 1.3 @@ -1,22 +1,18 @@ <?xml version="1.0" encoding="UTF-8"?> + <projectDescription> - <name>commonjava-opl</name> - <comment> - </comment> - <projects> - <project>commonjava-io</project> - <project>commonjava-lang</project> - <project>commonjava-reflection</project> - <project>commonjava-util</project> - </projects> - <buildSpec> - <buildCommand> - <name>org.eclipse.jdt.core.javabuilder</name> - <arguments> - </arguments> - </buildCommand> - </buildSpec> - <natures> - <nature>org.eclipse.jdt.core.javanature</nature> - </natures> -</projectDescription> + <name>commonjava-opl</name> + <comment>In a drastically simple nutshell, OPL is an XML parser. It supports the notion of parser-per-element XML parsing, facilitating the construction of complex configurations and other types of objects from the parsed XML. OPL supports dynamic attribute resolution and packaged parser library definitions, both in the form of ParserLibrary implementation classes and in the form of XML definitions. In the latter case, OPL uses a specially-defined meta ParserLibrary and builds the actual parser library straight from the XML. The following is the algorithm: In this way, we can start parsing the object before the children are visited, and finish afterward. All NodeParsers have the ability to retrieve attribute values from the passed in ElementInfo object, and can lookup their parent parser via the getParent() or findAncestorWithClass() methods. Finally, if a NodeParser implementation also implements OPLModelRoot, this is meant to be the root node of the XML document, and contains the additional method getParsedObject(), which will return the result of the parsing effort. SAX and DOM are both supported via specific OPLDriver implementations; other XML parsers can also be supported by re-implementing this interface with specific code to use the other parser technology.</comment> + <projects> + </projects> + <buildSpec> + <buildCommand> + <name>org.eclipse.jdt.core.javabuilder</name> + <arguments> + </arguments> + </buildCommand> + </buildSpec> + <natures> + <nature>org.eclipse.jdt.core.javanature</nature> + </natures> +</projectDescription> \ No newline at end of file |