2016-01-30 23:32:00 +00:00
|
|
|
<?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/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<groupId>uk.co.neviyn</groupId>
|
|
|
|
<artifactId>musicplayer</artifactId>
|
|
|
|
<version>DEVELOPMENT</version>
|
|
|
|
|
2016-02-24 19:16:43 +00:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>2.3.2</version>
|
|
|
|
<configuration>
|
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2016-02-24 20:06:30 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>2.4</version>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
|
|
|
<addClasspath>true</addClasspath>
|
|
|
|
<classpathPrefix>lib/</classpathPrefix>
|
2016-03-29 16:05:08 +01:00
|
|
|
<mainClass>musicplayer.Main</mainClass>
|
2016-02-24 20:06:30 +00:00
|
|
|
</manifest>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>copy-dependencies</id>
|
|
|
|
<phase>prepare-package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<outputDirectory>${project.build.directory}/lib</outputDirectory>
|
|
|
|
<overWriteReleases>false</overWriteReleases>
|
|
|
|
<overWriteSnapshots>false</overWriteSnapshots>
|
|
|
|
<overWriteIfNewer>true</overWriteIfNewer>
|
2016-03-16 01:06:49 +00:00
|
|
|
<includeScope>runtime</includeScope>
|
2016-02-24 20:06:30 +00:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2016-02-24 19:16:43 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2016-01-30 23:32:00 +00:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.jthink</groupId>
|
|
|
|
<artifactId>jaudiotagger</artifactId>
|
|
|
|
<version>2.2.3</version>
|
2016-03-16 01:06:49 +00:00
|
|
|
<scope>compile</scope>
|
2016-01-30 23:32:00 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
<artifactId>hibernate-core</artifactId>
|
|
|
|
<version>5.0.7.Final</version>
|
2016-03-16 01:06:49 +00:00
|
|
|
<scope>compile</scope>
|
2016-01-30 23:32:00 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hsqldb</groupId>
|
|
|
|
<artifactId>hsqldb</artifactId>
|
|
|
|
<version>2.3.3</version>
|
2016-03-16 01:06:49 +00:00
|
|
|
<scope>compile</scope>
|
2016-01-30 23:32:00 +00:00
|
|
|
</dependency>
|
2016-02-09 20:57:08 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.googlecode.gstreamer-java</groupId>
|
|
|
|
<artifactId>gstreamer-java</artifactId>
|
|
|
|
<version>1.5</version>
|
2016-03-16 01:06:49 +00:00
|
|
|
<scope>compile</scope>
|
2016-02-09 20:57:08 +00:00
|
|
|
</dependency>
|
2016-04-01 20:27:17 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>uk.co.caprica</groupId>
|
|
|
|
<artifactId>vlcj</artifactId>
|
|
|
|
<version>3.10.1</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2016-02-24 19:16:43 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.12</version>
|
2016-03-16 01:06:49 +00:00
|
|
|
<scope>test</scope>
|
2016-02-24 19:16:43 +00:00
|
|
|
</dependency>
|
2016-03-08 16:41:54 +00:00
|
|
|
<dependency>
|
2016-03-15 04:56:17 +00:00
|
|
|
<groupId>com.1stleg</groupId>
|
|
|
|
<artifactId>jnativehook</artifactId>
|
|
|
|
<version>2.0.2</version>
|
2016-03-16 01:06:49 +00:00
|
|
|
<scope>compile</scope>
|
2016-03-08 16:41:54 +00:00
|
|
|
</dependency>
|
2016-03-18 17:07:39 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.inject</groupId>
|
|
|
|
<artifactId>guice</artifactId>
|
|
|
|
<version>4.0</version>
|
2016-03-19 19:49:35 +00:00
|
|
|
<scope>compile</scope>
|
2016-03-18 17:07:39 +00:00
|
|
|
</dependency>
|
2016-08-17 15:48:31 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.swinglabs.swingx</groupId>
|
|
|
|
<artifactId>swingx-all</artifactId>
|
|
|
|
<version>1.6.5-1</version>
|
|
|
|
</dependency>
|
2016-01-30 23:32:00 +00:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>org.jboss.repository.releases</id>
|
|
|
|
<name>JBoss Maven Release Repository</name>
|
|
|
|
<url>https://repository.jboss.org/nexus/content/repositories/releases</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>jaudiotagger-repository</id>
|
|
|
|
<url>https://dl.bintray.com/ijabz/maven</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
</project>
|