-
1. Re: Configuring directoryPath attribute of Git connector via WildFly CLI
hchiorean Mar 8, 2016 11:52 AM (in response to mashama)after you add the specific (explicitly defined in XSD) properties, run:
/subsystem=modeshape/repository=sample/source=git/:write-attribute(name="properties", value=[{"directoryPath" => "abc"}])
if you want to add other "generic" Git connector properties, use the value=[{"name" => "value", "name => "value", etc}] format.
Also note that 4.6.0.Final will most likely *not work* with Wildfly 10. This will be supported only starting with ModeShape 5.
-
2. Re: Configuring directoryPath attribute of Git connector via WildFly CLI
mashama Mar 8, 2016 1:27 PM (in response to hchiorean)Works great .. thanks! I couldn't locate the XSD, where is it? Also I don't understand why WildFly 10 support will only start with ModeShape 5, especially considering the 4.x line has supported both WildFly 8 and 9. Can you elaborate on this more?
-
3. Re: Configuring directoryPath attribute of Git connector via WildFly CLI
hchiorean Mar 9, 2016 12:56 AM (in response to mashama)The XSD is always located in %JBOSS_HOME%/docs/schema if you've extract the ModeShape DV WF kit.
ModeShape 4.6.0.Final is the final 4.x community release and still uses Java 7. Willdfly 10 requires Java 8 so the ModeShape WF subsystem from 4.x will not run on Wildfly 10. ModeShape 5 will require Java 8 and the WF subsystem will therefore work with WF 10.
-
4. Re: Configuring directoryPath attribute of Git connector via WildFly CLI
mashama Mar 9, 2016 12:56 PM (in response to hchiorean)Ah right .. I forgot WildFly 10 deprecates Java 7 support. Thanks for the update.