<?xml version="1.0" encoding="UTF-8"?>
<project>

	<modelVersion>4.0.0</modelVersion>
	
    <groupId>org.joinedworkz</groupId>
    <artifactId>parent</artifactId>
    <version>1.2.3</version>
    <packaging>pom</packaging>
    
    <name>JoinedWorkz parent</name>
	<description>DSL based modeling framework - parent</description>
	<url>http://www.joinedworkz.org</url>
	
	<licenses>
		<license>
			<name>JoinedSystems Commercial License</name>
			<url>http://joinedworkz.org/license/joinedsystems-commercial-license.html</url>
			<distribution>repo</distribution>
		</license>
	</licenses>

	<organization>
		<name>JoinedSystems e.U.</name>
		<url>http://www.joinedsystems.com/</url>
	</organization>
	<developers>
		<developer>
			<name>Karl Hönninger</name>
			<organization>JoinedSystems e.U.</organization>
			<organizationUrl>http://www.joinedsystems.com/</organizationUrl>
		</developer>
	</developers>

	<scm>
		<url>http://gitlab.joinedsystems.com/groups/joinedworkz</url>
	</scm>

	<properties>
		<maven.compiler.source>11</maven.compiler.source>
		<maven.compiler.target>11</maven.compiler.target>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
		<xtextVersion>2.26.0.M3</xtextVersion>
	</properties>
    
    <profiles>
		<profile>
			<id>public</id>
				<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>
		</profile>
   	</profiles>
   	
   	<build>
		<plugins>
   			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-gpg-plugin</artifactId>
				<version>3.0.1</version>
				<executions>
					<execution>
						<id>sign-artifacts</id>
						<phase>verify</phase>
						<goals>
							<goal>sign</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<groupId>org.sonatype.plugins</groupId>
				<artifactId>nexus-staging-maven-plugin</artifactId>
				<version>1.6.8</version>
				<extensions>true</extensions>
				<configuration>
					<serverId>ossrh</serverId>
					<nexusUrl>https://oss.sonatype.org/</nexusUrl>
					<autoReleaseAfterClose>true</autoReleaseAfterClose>
				</configuration>
			</plugin>
		</plugins>
	</build>

</project> 
