<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.ndg.common</groupId>
<artifactId>ndgutils</artifactId>
<version>0.4.0</version>
<name>ndgUtils</name>
<description>Selected java utilities moved out of ndgJavaUtils</description>
<scm>
<connection>scm:git:ssh://nigelgay@git.code.sf.net/p/momime/utils</connection>
<tag>ndgutils-0.4.0</tag>
</scm>
<parent>
<groupId>com.ndg.common</groupId>
<artifactId>parent</artifactId>
<version>0.4.0</version>
</parent>
<build>
<plugins>
<plugin>
<groupId>org.jvnet.jaxb2.maven2</groupId>
<artifactId>maven-jaxb2-plugin</artifactId>
<executions>
<execution>
<id>main-xjc-generate</id>
<phase>generate-sources</phase>
<goals><goal>generate</goal></goals>
<configuration>
<schemaDirectory>src/main/resources/com.ndg.swing.layoutmanagers</schemaDirectory>
<generateDirectory>target/generated-sources/xjc-layoutmanagers</generateDirectory>
<episodeFile>target/generated-sources/xjc-layoutmanagers/META-INF/layoutmanagers.episode</episodeFile>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId> <!-- See comment in parent pom -->
<artifactId>jaxb-impl</artifactId>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId> <!-- Removed from JDK 11 -->
<artifactId>jaxb-api</artifactId>
</dependency>
<dependency>
<groupId>com.sun.istack</groupId>
<artifactId>istack-commons-runtime</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
</dependencies>
</project>