<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>net.sourceforge.jbizmo</groupId>
	<artifactId>jbizmo-master</artifactId>
	<version>6.2.0</version>
	<packaging>pom</packaging>
	<name>JBizMo</name>
	<url>http://sourceforge.net/projects/jbizmo</url>

	<licenses>
		<license>
			<name>GNU General Public License (GPL)</name>
			<url>http://www.gnu.org/licenses/gpl.txt</url>
		</license>
	</licenses>

	<developers>
		<developer>
			<name>Martin Ganserer</name>
			<email>mgsoft@gmx.de</email>
			<organization>Sourceforge</organization>
			<organizationUrl>http://sourceforge.net</organizationUrl>
		</developer>
	</developers>

	<description>JBizMo supports building of JavaFX, Eclipse RCP, Eclipse RAP, Swing, JSF (Primefaces) and Vaadin applications. The generated applications can run in a stand-alone mode or they can be deployed on a Java EE server (JBoss 8, GlassFish 4). Alternatively, the Spring platform is also supported! JBizMo applications use JPA in order to access the target database. The plug-in contains a graphical editor for designing the domain model.</description>

	<scm>
		<connection>scm:svn:http://svn.code.sf.net/p/jbizmo/code/trunk</connection>
		<developerConnection>scm:svn:http://svn.code.sf.net/p/jbizmo/code</developerConnection>
		<url>http://svn.code.sf.net/p/jbizmo/code</url>
	</scm>

	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<maven.compiler.source>11</maven.compiler.source>
		<maven.compiler.target>11</maven.compiler.target>
		<version_java_ee>8.0</version_java_ee>
		<version_poi>3.17</version_poi>
		<version_spring>5.2.10.RELEASE</version_spring>
		<version_vaadin>14.6.8</version_vaadin>
		<version_avro>1.10.1</version_avro>
	</properties>
	
	<dependencies>
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-api</artifactId>
			<version>1.7.25</version>
		</dependency>
		<dependency>
			<groupId>jakarta.xml.bind</groupId>
			<artifactId>jakarta.xml.bind-api</artifactId>
			<version>2.3.2</version>
		</dependency>
	</dependencies>

	<profiles>
		<profile>
			<id>release-sign-artifacts</id>
			<activation>
				<property>
					<name>performRelease</name>
					<value>true</value>
				</property>
			</activation>
			<build>
				<plugins>
					<plugin>
						<groupId>org.apache.maven.plugins</groupId>
						<artifactId>maven-gpg-plugin</artifactId>
						<version>1.6</version>
						<executions>
							<execution>
								<id>sign-artifacts</id>
								<phase>verify</phase>
								<goals>
									<goal>sign</goal>
								</goals>
							</execution>
						</executions>
					</plugin>
				</plugins>
			</build>
		</profile>
	</profiles>

	<build>
		<plugins>
			<!-- Create sources -->
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-source-plugin</artifactId>
				<version>2.4</version>
				<executions>
					<execution>
						<id>attach-sources</id>
						<goals>
							<goal>jar</goal>
						</goals>
					</execution>
				</executions>
			</plugin>

			<!-- Create javadoc -->
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
				<version>3.1.0</version>
				<executions>
					<execution>
						<id>attach-javadocs</id>
						<goals>
							<goal>jar</goal>
						</goals>
						<configuration>
							<additionalJOption>-Xdoclint:none</additionalJOption>
						</configuration>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>

	<modules>
		<module>../net.sourceforge.jbizmo.commons</module>
		<module>../net.sourceforge.jbizmo.commons.jpa</module>
		<module>../net.sourceforge.jbizmo.commons.server</module>
		<module>../net.sourceforge.jbizmo.commons.javaee</module>
		<module>../net.sourceforge.jbizmo.commons.invoker.javaee</module>
		<module>../net.sourceforge.jbizmo.commons.invoker</module>
		<module>../net.sourceforge.jbizmo.commons.richclient</module>
		<module>../net.sourceforge.jbizmo.commons.richclient.swing</module>
		<module>../net.sourceforge.jbizmo.commons.invoker.spring</module>
		<module>../net.sourceforge.jbizmo.commons.spring</module>
		<module>../net.sourceforge.jbizmo.commons.spring.kafka</module>
		<module>../net.sourceforge.jbizmo.commons.webclient.primefaces</module>
		<module>../net.sourceforge.jbizmo.commons.webclient.vaadin</module>
		<module>../net.sourceforge.jbizmo.commons.richclient.javafx</module>
		<module>../net.sourceforge.jbizmo.commons.selenium</module>
		<module>../net.sourceforge.jbizmo.commons.avro</module>
	</modules>

	<distributionManagement>
		<snapshotRepository>
			<id>ossrh</id>
			<url>https://oss.sonatype.org/content/repositories/snapshots</url>
		</snapshotRepository>
		<repository>
			<id>ossrh</id>
			<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
		</repository>
	</distributionManagement>

</project>
