<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <parent>
	  <groupId>com.top-logic</groupId>
	  <artifactId>tl-parent-gwt</artifactId>
	  <version>0.0.1-REACT</version>
	  <relativePath>../tl-parent-gwt</relativePath>
  </parent>

  <artifactId>tl-react-flow-client</artifactId>
	<name>${project.artifactId}</name>
	<url>https://github.com/top-logic/tl-engine/</url>

  <properties>
	<gwt.module>com.top_logic.react.flow.client.TLReactFlowClient</gwt.module>
	<elemental2.version>1.3.2</elemental2.version>
  </properties>

  <dependencies>
  	<dependency>
		<groupId>com.top-logic</groupId>
		<artifactId>tl-react-flow-common</artifactId>
  	</dependency>

  	<dependency>
		<groupId>com.top-logic</groupId>
		<artifactId>tl-react-flow-common</artifactId>
        <classifier>sources</classifier>
        <scope>provided</scope>
  	</dependency>

  	<dependency>
		<groupId>org.vectomatic</groupId>
		<artifactId>lib-gwt-svg</artifactId>
		<version>0.5.15</version>
  	</dependency>

	<dependency>
	    <groupId>com.google.elemental2</groupId>
	    <artifactId>elemental2-dom</artifactId>
	    <version>${elemental2.version}</version>
	</dependency>
	<dependency>
	    <groupId>com.google.elemental2</groupId>
	    <artifactId>elemental2-dom</artifactId>
	    <version>${elemental2.version}</version>
        <classifier>sources</classifier>
        <scope>provided</scope>
	</dependency>

	<dependency>
	    <groupId>com.google.elemental2</groupId>
	    <artifactId>elemental2-core</artifactId>
	    <version>${elemental2.version}</version>
	</dependency>
	<dependency>
	    <groupId>com.google.elemental2</groupId>
	    <artifactId>elemental2-core</artifactId>
	    <version>${elemental2.version}</version>
        <classifier>sources</classifier>
        <scope>provided</scope>
	</dependency>

    <!-- Note: Must repeat non-inherited dependencies (provided dependencies are not inherited). -->
    <dependency>
      <groupId>org.gwtproject</groupId>
      <artifactId>gwt-user</artifactId>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.gwtproject</groupId>
      <artifactId>gwt-dev</artifactId>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>com.top-logic</groupId>
      <artifactId>tl-ajax-client</artifactId>
      <classifier>sources</classifier>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>com.top-logic</groupId>
      <artifactId>tl-ajax-shared</artifactId>
      <classifier>sources</classifier>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>com.top-logic</groupId>
      <artifactId>tl-common-json</artifactId>
      <classifier>sources</classifier>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>com.top-logic</groupId>
      <artifactId>tl-common-remote</artifactId>
      <classifier>sources</classifier>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>com.top-logic</groupId>
      <artifactId>tl-basic-shared</artifactId>
      <classifier>sources</classifier>
      <scope>provided</scope>
    </dependency>
    <dependency>
       <groupId>de.haumacher.msgbuf</groupId>
       <artifactId>msgbuf-api</artifactId>
       <classifier>sources</classifier>
       <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>com.top-logic</groupId>
      <artifactId>tl-graph-layouter</artifactId>
      <classifier>sources</classifier>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>com.top-logic</groupId>
      <artifactId>tl-graph-common</artifactId>
      <classifier>sources</classifier>
      <scope>provided</scope>
    </dependency>

  </dependencies>

  <build>
  	<plugins>
  	  <plugin>
		<groupId>org.apache.maven.plugins</groupId>
		<artifactId>maven-war-plugin</artifactId>
	  </plugin>
 	  <plugin>
		<groupId>net.ltgt.gwt.maven</groupId>
		<artifactId>gwt-maven-plugin</artifactId>
		<configuration>
			<style>PRETTY</style>
		</configuration>
 	  </plugin>
  	</plugins>
  </build>

</project>
