wso2 - How to add another dbs to car -


i have following plugin builds car containing dbs service named abc.dbs:

<groupid>some group</groupid> <artifactid>some-dss</artifactid> <version>1.1.0</version> <packaging>service/dataservice</packaging>  <name>some-dss</name> <description>some-dss</description>    <plugin>     <groupid>org.wso2.maven</groupid>     <artifactid>maven-dataservice-plugin</artifactid>     <version>2.0.9</version>     <extensions>true</extensions>     <configuration>       <artifact>src/main/dataservice/abc.dbs</artifact>     </configuration>   </plugin>   <plugin>     <artifactid>maven-eclipse-plugin</artifactid>     <version>2.9</version>     <configuration>       <buildcommands />       <projectnatures>         <projectnature>org.wso2.developerstudio.eclipse.ds.project.nature</projectnature>       </projectnatures>     </configuration>   </plugin> 

i have dbs now. how configure plugin add dbs? tried:

    <configuration>       <artifact>src/main/dataservice/abc.dbs</artifact>       <artifact>src/main/dataservice/def.dbs</artifact>     </configuration> 

but car has def.dbs. thanks.

the feature available in developer studio 3.8.0

with maven plugin - maven-dataservice-plugin - version : 2.1.0

reference:

http://wso2.com/products/developer-studio/

http://wso2-oxygen-tank.10903.n7.nabble.com/multiple-dbs-files-support-in-a-single-data-services-project-via-developer-studio-td115686.html


Comments

Popular posts from this blog

javascript - AngularJS custom datepicker directive -

javascript - jQuery date picker - Disable dates after the selection from the first date picker -