Changeset 28119
- Timestamp:
- 12/13/07 21:08:18 (1 year ago)
- Files:
-
- org.nuxeo.ecm.client/branches/1.3.4-20071129/README.txt (modified) (1 diff)
- org.nuxeo.ecm.client/branches/1.3.4-20071129/nuxeo-client-build/pom.xml (modified) (2 diffs)
- org.nuxeo.ecm.client/branches/1.3.4-20071129/nuxeo-client-commands/pom.xml (modified) (1 diff)
- org.nuxeo.ecm.client/branches/1.3.4-20071129/nuxeo-client-commands/src/main/java/org/nuxeo/ecm/client/commands/ScriptCommand.java (deleted)
- org.nuxeo.ecm.client/branches/1.3.4-20071129/nuxeo-client-commands/src/main/resources/OSGI-INF/Commands.xml (modified) (1 diff)
- org.nuxeo.ecm.client/branches/1.3.4-20071129/pom.xml (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
org.nuxeo.ecm.client/branches/1.3.4-20071129/README.txt
r25651 r28119 2 2 ================== 3 3 4 So to build the client, just run 'mvn install' here. Make sure that your4 So to build the client, just run 'mvn -Pbuild-with-branch5.1 install' here. Make sure that your 5 5 ~/.m2/settings.xml is properly configured (see the Nuxeo Book on 6 6 http://doc.nuxeo.org/ for more information if needed). org.nuxeo.ecm.client/branches/1.3.4-20071129/nuxeo-client-build/pom.xml
r28117 r28119 35 35 <artifactId>nuxeo-runtime</artifactId> 36 36 </dependency> 37 <dependency>38 <groupId>org.nuxeo.runtime</groupId>39 <artifactId>nuxeo-runtime-scripting</artifactId>40 </dependency>41 37 42 38 <dependency> … … 121 117 <groupId>dom4j</groupId> 122 118 <artifactId>dom4j</artifactId> 119 <version>1.6.1</version> 123 120 </dependency> 124 121 org.nuxeo.ecm.client/branches/1.3.4-20071129/nuxeo-client-commands/pom.xml
r28117 r28119 29 29 <groupId>org.nuxeo.runtime</groupId> 30 30 <artifactId>nuxeo-runtime</artifactId> 31 </dependency>32 <dependency>33 <groupId>org.nuxeo.runtime</groupId>34 <artifactId>nuxeo-runtime-scripting</artifactId>35 31 </dependency> 36 32 org.nuxeo.ecm.client/branches/1.3.4-20071129/nuxeo-client-commands/src/main/resources/OSGI-INF/Commands.xml
r28114 r28119 25 25 <command name="interactive" class="org.nuxeo.ecm.client.commands.InteractiveCommand" requireConnection="false" alt="i,int"> 26 26 <description>Enter interactive mode</description> 27 <help>28 TODO29 </help>30 </command>31 <command name="script" class="org.nuxeo.ecm.client.commands.ScriptCommand" alt="s">32 <options>33 <option name="file" shortcut="f" var="true" type="file">34 A path to the script file to execute35 </option>36 </options>37 <description>Executes scripts</description>38 27 <help> 39 28 TODO org.nuxeo.ecm.client/branches/1.3.4-20071129/pom.xml
r28117 r28119 8 8 <groupId>org.nuxeo</groupId> 9 9 <artifactId>nuxeo-ecm</artifactId> 10 <version> 10</version>10 <version>4.6</version> 11 11 </parent> 12 12 … … 50 50 </activation> 51 51 <properties> 52 <nuxeo.common.version>1.3. 5-SNAPSHOT</nuxeo.common.version>53 <nuxeo.core.version>1.3. 5-SNAPSHOT</nuxeo.core.version>54 <nuxeo.platform.version>5.1. 3-SNAPSHOT</nuxeo.platform.version>55 <nuxeo.runtime.version>1.3. 5-SNAPSHOT</nuxeo.runtime.version>52 <nuxeo.common.version>1.3.4-20071129</nuxeo.common.version> 53 <nuxeo.core.version>1.3.4-20071129</nuxeo.core.version> 54 <nuxeo.platform.version>5.1.2-20071129</nuxeo.platform.version> 55 <nuxeo.runtime.version>1.3.4-20071129</nuxeo.runtime.version> 56 56 </properties> 57 57 <dependencyManagement>
