[
https://issues.jboss.org/browse/TEIID-4404?page=com.atlassian.jira.plugin...
]
Kylin Soong updated TEIID-4404:
-------------------------------
Comment: was deleted
(was: What you mention above is not true, for at least standalone mode. One can execute
{code}
./bin/add-user.sh -a -u teiidUser -p password1! -g user,odata,rest
./bin/standalone.sh -c standalone-teiid.xml
{code}
That is closest we can get to. One possibility is, in full server distro we can remove the
need to use "standalone-teiid.xml" and rename this to standalone.xml. We can
also look into doing the same with domain.xml.)
Add a maven plugin which can start, stop teiid serrver
------------------------------------------------------
Key: TEIID-4404
URL:
https://issues.jboss.org/browse/TEIID-4404
Project: Teiid
Issue Type: Feature Request
Components: Embedded
Reporter: Kylin Soong
Assignee: Kylin Soong
Fix For: 9.1
The wildfly maven plugin can start, stop wildfly server
{code}
<plugin>
<groupId>org.wildfly.plugins</groupId>
<artifactId>wildfly-maven-plugin</artifactId>
<version>${version.org.wildfly.plugins.maven}</version>
<executions>
<execution>
<id>start</id>
<goals>
<goal>start</goal>
</goals>
<phase>validate</phase>
<configuration>
<version>${version.wildfly}</version>
<server-config>standalone-full-ha.xml</server-config>
</configuration>
</execution>
<execution>
<id>stop</id>
<goals>
<goal>shutdown</goal>
</goals>
<phase>package</phase>
</execution>
</executions>
</plugin>
{code}
This Issue will add a teiid maven plugin, which can start, stop teiid server, in develop
swarm teiid, generate config api [1] depend on runtime teiid server, add this will made
swarm develop more automatic.
[1]
https://github.com/teiid/wildfly-swarm-teiid/tree/master/config-api
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)