All Downloads are FREE. Search and download functionalities are using the official Maven repository.

META-INF.maven.org.pepsoft.worldpainter.WPGUI.pom.xml Maven / Gradle / Ivy

There is a newer version: 2.23.2
Show newest version
<project>
    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>org.pepsoft.worldpainter</groupId>
        <artifactId>WorldPainter</artifactId>
        <version>2.10.5</version>
    </parent>

    <artifactId>WPGUI</artifactId>

    <dependencies>
        <dependency>
            <groupId>org.pepsoft.worldpainter</groupId>
            <artifactId>WPCore</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>org.pepsoft.worldpainter</groupId>
            <artifactId>WPDynmapPreviewer</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>org.pepsoft.worldpainter</groupId>
            <artifactId>WPJava9Support</artifactId>
            <version>${project.version}</version>
            <scope>runtime</scope>
        </dependency>

        <dependency>
            <groupId>org.jetbrains</groupId>
            <artifactId>annotations</artifactId>
            <version>23.0.0</version>
            <scope>provided</scope> <!-- Not really, but these annotations aren't needed at runtime. -->
        </dependency>

        <dependency>
            <!-- Not in Maven central; here it comes from the
                 worldpainter-private repo. -->
            <groupId>net.sourceforge</groupId>
            <artifactId>jpen</artifactId>
            <version>2-150301</version>
        </dependency>
        <!-- If you can't or won't use the JIDE docking framework, you can use the JIDE open source components so that
             at least the derived Swing controls will work: -->
        <!--<dependency>-->
            <!--<groupId>com.jidesoft</groupId>-->
            <!--<artifactId>jide-oss</artifactId>-->
            <!--<version>3.7.13</version>-->
        <!--</dependency>-->
        <dependency>
            <!-- Commercial product; you will need to download the evaluation version, or obtain a license to use JIDE
                 (an open source license is free). -->
            <groupId>com.jidesoft</groupId>
            <artifactId>jide-common</artifactId>
            <version>3.7.13</version>
        </dependency>
        <dependency>
            <!-- Commercial product; you will need to download the evaluation version, or obtain a license to use JIDE
                 (an open source license is free). -->
            <groupId>com.jidesoft</groupId>
            <artifactId>jide-dock</artifactId>
            <version>3.7.13</version>
        </dependency>
        <dependency>
            <!-- Commercial product; you will need to download the evaluation version, or obtain a license to use JIDE
                 (an open source license is free). This module is only necessary on Linux, to make the GTK look and feel
                 work correctly. -->
            <groupId>com.jidesoft</groupId>
            <artifactId>jide-plaf-jdk7</artifactId>
            <version>3.7.13</version>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <!-- Not in Maven central; here it comes from the
                 worldpainter-private repo. -->
            <groupId>org.netbeans.swing</groupId>
            <artifactId>laf-dark</artifactId>
            <version>201403101706</version>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>com.nativelibs4java</groupId>
            <artifactId>bridj</artifactId>
            <version>0.7.0</version>
            <scope>runtime</scope>
            <exclusions>
                <exclusion>
                    <groupId>com.google.android.tools</groupId>
                    <artifactId>dx</artifactId>
                </exclusion>
            </exclusions>
        </dependency>

        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
            <version>1.7.36</version>
        </dependency>
        <dependency>
            <groupId>ch.qos.logback</groupId>
            <artifactId>logback-classic</artifactId>
            <version>1.2.11</version>
        </dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>jcl-over-slf4j</artifactId>
            <version>1.7.36</version>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>jul-to-slf4j</artifactId>
            <version>1.7.36</version>
        </dependency>
        <dependency>
            <groupId>org.apache.logging.log4j</groupId>
            <artifactId>log4j-to-slf4j</artifactId>
            <version>2.17.2</version>
            <scope>runtime</scope>
        </dependency>

        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.13.2</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <resources>
            <resource>
                <directory>src/main/resources</directory>
                <includes>
                    <include>org.pepsoft.worldpainter.plugins</include>
                </includes>
                <filtering>true</filtering>
            </resource>
            <resource>
                <directory>src/main/resources</directory>
                <excludes>
                    <exclude>org.pepsoft.worldpainter.plugins</exclude>
                </excludes>
                <filtering>false</filtering>
            </resource>
        </resources>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>exec-maven-plugin</artifactId>
                <version>1.3.2</version>
                <configuration>
                    <executable>java</executable>
                    <arguments>
                        <argument>-cp</argument>
                        <classpath/>
                        <argument>-Dorg.pepsoft.worldpainter.devMode=true</argument>
                        <argument>org.pepsoft.worldpainter.Main</argument>
                    </arguments>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-failsafe-plugin</artifactId>
                <version>3.0.0-M6</version>
                <configuration>
                    <reuseForks>false</reuseForks>
                    <jvm>${jdk11.exec.path}</jvm>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>




© 2015 - 2025 Weber Informatics LLC | Privacy Policy