Skip to content
Snippets Groups Projects
Select Git revision
  • cc5053648a8ba2a5c02dae317fe5b4003ead3b7b
  • develop default protected
  • master protected
  • feature/scrollbars
  • native-audio
  • v7.3.0
  • v7.2.0
  • v7.1.0
  • v7.0.2
  • v7.0.1
  • v7.0.0
  • v5.0.1
  • v5.1.0
  • v6.1.0
  • v6.0.0
15 results

pom.xml

Blame
  • pom.xml 2.90 KiB
    <?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>
    
        <parent>
            <groupId>de.tobias.playpad</groupId>
            <artifactId>PlayWallDesktop</artifactId>
            <version>7.0.0-SNAPSHOT</version>
        </parent>
    
        <artifactId>PlayWallComponents</artifactId>
    
        <properties>
            <tinysound.version>1.1.1</tinysound.version>
            <jorbis.version>0.0.17</jorbis.version>
            <vorbisspi.version>1.0.3.3</vorbisspi.version>
            <tritonus-share.version>0.3.7.4</tritonus-share.version>
        </properties>
    
        <dependencies>
            <dependency>
                <groupId>de.tobias.playpad</groupId>
                <artifactId>PlayWallCore</artifactId>
                <version>${core.version}</version>
            </dependency>
    
            <dependency>
                <groupId>kuusisto</groupId>
                <artifactId>tinysound</artifactId>
                <version>${tinysound.version}</version>
            </dependency>
            <dependency>
                <groupId>org.jcraft</groupId>
                <artifactId>jorbis</artifactId>
                <version>${jorbis.version}</version>
            </dependency>
            <dependency>
                <groupId>com.googlecode.soundlibs</groupId>
                <artifactId>vorbisspi</artifactId>
                <version>${vorbisspi.version}</version>
            </dependency>
            <dependency>
                <groupId>com.googlecode.soundlibs</groupId>
                <artifactId>tritonus-share</artifactId>
                <version>${tritonus-share.version}</version>
            </dependency>
        </dependencies>
    
        <distributionManagement>
            <repository>
                <id>release</id>
                <name>TheCodeLabs-releases</name>
                <url>https://maven.thecodelabs.de/artifactory/TheCodeLabs-release</url>
            </repository>
            <snapshotRepository>
                <id>snapshots</id>
                <name>TheCodeLabs-snapshots</name>
                <url>https://maven.thecodelabs.de/artifactory/TheCodeLabs-snapshots</url>
            </snapshotRepository>
        </distributionManagement>
    
        <repositories>
            <repository>
                <id>release</id>
                <url>https://maven.thecodelabs.de/artifactory/TheCodeLabs-release</url>
                <releases>
                    <enabled>true</enabled>
                </releases>