[teiid-issues] [JBoss JIRA] (TEIID-4404) Add a maven plugin which can start, stop teiid serrver

Kylin Soong (JIRA) issues at jboss.org
Thu Sep 1 05:08:01 EDT 2016


     [ https://issues.jboss.org/browse/TEIID-4404?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Kylin Soong closed TEIID-4404.
------------------------------
    Resolution: Won't Do


Wildfly maven plugin add artifacts can be used to start and stop Teiid Server as below
{code}
        <groupId>org.wildfly.plugins</groupId>
        <artifactId>wildfly-maven-plugin</artifactId>
        <executions>
          <execution>
            <id>start</id>
            <goals>
              <goal>start</goal>
            </goals>
            <phase>validate</phase>
            <configuration>
              <groupId>org.jboss.teiid</groupId>
              <artifactId>teiid</artifactId>
              <version>${version.teiid}</version>
              <classifier>wildfly-server</classifier>
              <packaging>zip</packaging>
              <server-config>standalone-teiid.xml</server-config>
            </configuration>
          </execution>
          <execution>
            <id>stop</id>
            <goals>
              <goal>shutdown</goal>
            </goals>
            <phase>package</phase>
          </execution>
        </executions>
      </plugin>
{code} 

> 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)


More information about the teiid-issues mailing list