<?xml version="1.0" encoding="UTF-8"?>
<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>org.sonatype.oss</groupId>
		<artifactId>oss-parent</artifactId>
		<version>7</version>
	</parent>
	<groupId>net.sf.xmlform</groupId>
	<artifactId>xmlform-parent</artifactId>
	<version>3.9.0</version>
	<packaging>pom</packaging>
	<name>Java XML Form</name>
	<url>http://sourceforge.net/projects/javaxmlform/</url>
	<licenses>
		<license>
			<name>The Apache Software License, Version 2.0</name>
			<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
			<distribution>repo</distribution>
		</license>
	</licenses>
	<scm>
		<tag>master</tag>
		<url>https://svn.code.sf.net/p/javaxmlform/code/</url>
		<connection>https://svn.code.sf.net/p/javaxmlform/code/</connection>
		<developerConnection>https://svn.code.sf.net/p/javaxmlform/code/</developerConnection>
	</scm>
	<developers>
		<developer>
			<name>Liu Zhikun</name>
			<email>frlzk@163.com</email>
			<organization></organization>
		</developer>
	</developers>

	<modules>
		<module>context</module>
		<module>port</module>
		<module>spring</module>
		<module>spring-starter</module>
		<module>web</module>
	</modules>


	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<project.file.encoding>UTF-8</project.file.encoding>
	</properties> 

	<build>  
		<plugins>  
			<plugin>  
				<groupId>org.apache.maven.plugins</groupId>  
				<artifactId>maven-compiler-plugin</artifactId>  
				<configuration>  
					<source>17</source>  
					<target>17</target>  
					<encoding>UTF-8</encoding>
				</configuration>  
			</plugin>
			<plugin>
				<groupId>org.sonatype.central</groupId>
				<artifactId>central-publishing-maven-plugin</artifactId>
				<version>0.8.0</version>
				<extensions>true</extensions>
				<configuration>
					<publishingServerId>central_sonatype</publishingServerId>
				</configuration>
			</plugin>
		</plugins>  
	</build>
	
	<dependencies>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>3.8</version>
			<scope>test</scope>
		</dependency>
	</dependencies>
</project>
