<?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>
	<packaging>jar</packaging>

	<groupId>com.github.hypfvieh</groupId>
	<artifactId>dbus-java</artifactId>
	<version>2.7.4</version>

	<name>${project.artifactId}</name>

	<description>
		Slightly improved version of the Java DBus library
		provided by freedesktop.org (https://dbus.freedesktop.org/doc/dbus-java/).

		Changes:
		 - Fixed lot's of Java warnings
		 - Fixed broken 'Gettext' feature (Exceptions on unsupported languages, usage of "_" as method name).
		 - Renamed some classes/methods/variables to comply with Java naming scheme.
		 - Removed usage of proprietary logger and replaced it with sl4fj.
		 - Renamed/refactored some parts to be more 'Java' like (e.g. naming, shadowing)
		 - Fixed problems with DbusConnection.getConnection(SESSION) when using display export (e.g. SSH X11 forward)
	</description>

	<properties>
		<maven.compiler.source>1.7</maven.compiler.source>
		<maven.compiler.target>1.7</maven.compiler.target>
	</properties>

	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-jar-plugin</artifactId>
				<version>3.0.2</version>
				<executions>
					<execution>
						<goals>
							<goal>test-jar</goal>
						</goals>
					</execution>
				</executions>
				<configuration>
					<archive>
						<manifest>
							<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
						</manifest>
					</archive>
				</configuration>
			</plugin>

		</plugins>
	</build>

	<dependencies>
		<dependency>
			<groupId>com.github.hypfvieh</groupId>
			<artifactId>libmatthew</artifactId>
			<version>0.8.3</version>
		</dependency>

		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-api</artifactId>
			<version>1.7.25</version>
		</dependency>

		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.12</version>
			<scope>test</scope>
		</dependency>
		
		<dependency>
		    <groupId>org.slf4j</groupId>
		    <artifactId>slf4j-simple</artifactId>
		    <version>1.7.25</version>
		    <scope>test</scope>
        </dependency>
	</dependencies>

	<scm>
		<connection>scm:git:https://github.com/hypfvieh/dbus-java.git</connection>
		<developerConnection>scm:git:https://github.com/hypfvieh/dbus-java.git</developerConnection>
		<url>https://github.com/hypfvieh/dbus-java.git</url>
	</scm>
	<url>https://github.com/hypfvieh/${project.artifactId}</url>

	<licenses>
		<license>
			<name>GNU Lesser/Library General Public License version 2</name>
			<url>https://www.gnu.org/licenses/lgpl.html</url>
		</license>
	</licenses>

	<developers>
		<developer>
			<id>matthew</id>
			<name>Matthew Johnson</name>
			<email>src@matthew.ath.cx</email>
		</developer>
		<developer>
			<id>hypfvieh</id>
			<name>David M.</name>
			<email>hypfvieh@googlemail.com</email>
		</developer>
	</developers>
</project>
