<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 http://maven.apache.org/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>com.helger</groupId>
    <artifactId>parent-pom</artifactId>
    <version>1.11.1</version>
  </parent>
  <groupId>at.austriapro</groupId>
  <artifactId>ebinterface-web-parent</artifactId>
  <packaging>pom</packaging>
  <version>1.0.9</version>
  <name>ebinterface-web-parent</name>
  <description>The ebInterface validation service allows to check ebInterface instances against predefined Schematron rules etc.</description>
  <url>http://ebinterface.at</url>

  <scm>
    <connection>scm:git:git@github.com:austriapro/ebinterface-web.git</connection>
    <developerConnection>scm:git:git@github.com:austriapro/ebinterface-web.git</developerConnection>
    <url>https://github.com/austriapro/ebinterface-web</url>
    <tag>ebinterface-web-parent-1.0.9</tag>
  </scm>

  <organization>
    <url>http://ebinterface.at</url>
  </organization>

  <modules>
    <module>ebinterface-web-core</module>
    <module>ebinterface-web</module>
  </modules>
  
  <dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>com.helger</groupId>
        <artifactId>ph-commons-parent-pom</artifactId>
        <version>9.4.1</version>
        <type>pom</type>
        <scope>import</scope>
      </dependency>
      <dependency>
        <groupId>com.helger</groupId>
        <artifactId>ph-xsds-parent-pom</artifactId>
        <version>2.2.4</version>
        <type>pom</type>
        <scope>import</scope>
      </dependency>
      <dependency>
        <groupId>com.helger</groupId>
        <artifactId>ph-ubl-parent-pom</artifactId>
        <version>6.2.1</version>
        <type>pom</type>
        <scope>import</scope>
      </dependency>
      <dependency>
        <groupId>com.helger</groupId>
        <artifactId>ph-oton-parent-pom</artifactId>
        <version>8.2.3</version>
        <type>pom</type>
        <scope>import</scope>
      </dependency>
       <!-- Saxon XSLT processing for Java -->
      <dependency>
        <groupId>net.sf.saxon</groupId>
        <artifactId>Saxon-HE</artifactId>
        <version>10.0</version>
      </dependency>
  
      <dependency>
        <groupId>com.helger</groupId>
        <artifactId>ph-ebinterface</artifactId>
        <version>6.1.2</version>
      </dependency>
      <dependency>
        <groupId>com.helger</groupId>
        <artifactId>ph-jaxws-pom</artifactId>
        <version>1.1.3</version>
        <type>pom</type>
      </dependency>

      <!-- ebInterface rendering for PDF rendering and ZUGFeRD generation-->
      <dependency>
        <groupId>at.austriapro</groupId>
        <artifactId>ebinterface-rendering</artifactId>
        <version>1.0.0</version>
      </dependency>
  
      <!-- ebInterface mappings for ebInterface -> ZUGFeRD mapping-->
      <dependency>
        <groupId>at.austriapro</groupId>
        <artifactId>ebinterface-mappings-zugferd</artifactId>
        <version>1.0.0</version>
      </dependency>
  
      <dependency>
        <groupId>at.austriapro</groupId>
        <artifactId>ebinterface-ubl-mapping</artifactId>
        <version>4.5.4</version>
      </dependency>
      
      <dependency>
        <groupId>at.austriapro</groupId>
        <artifactId>ebinterface-xrechnung-mapping</artifactId>
        <version>1.0.4</version>
      </dependency>
  
      <!-- Wicket -->
      <dependency>
        <groupId>org.apache.wicket</groupId>
        <artifactId>wicket-core</artifactId>
        <version>8.7.0</version>
      </dependency>

      <dependency>
        <groupId>ch.qos.logback</groupId>
        <artifactId>logback-classic</artifactId>
        <version>1.2.3</version>
      </dependency>

      <!-- ebInterface core for the validation logic -->
      <dependency>
        <groupId>at.austriapro</groupId>
        <artifactId>ebinterface-web-core</artifactId>
        <version>${project.version}</version>
      </dependency>
    </dependencies>
  </dependencyManagement> 

	<dependencies>
		<!-- logging -->
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-api</artifactId>
		</dependency>
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>log4j-over-slf4j</artifactId>
		</dependency>
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>jcl-over-slf4j</artifactId>
		</dependency>
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>jul-to-slf4j</artifactId>
		</dependency>

		<dependency>
			<groupId>ch.qos.logback</groupId>
			<artifactId>logback-classic</artifactId>
		</dependency>

    <!-- testing -->
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <scope>test</scope>
    </dependency>
	</dependencies>
  
  <build>
    <plugins>
<!--
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>11</source>
          <target>11</target>
        </configuration>
      </plugin>
-->
    </plugins>
  </build>
</project>
