Slick Forums

Discuss the Slick 2D Library
It is currently Tue May 21, 2013 6:45 am

All times are UTC




Post new topic Reply to topic  [ 2 posts ] 
Author Message
PostPosted: Mon May 25, 2009 5:18 am 
Offline
User avatar

Joined: Tue Dec 25, 2007 7:23 pm
Posts: 45
Location: Iowa, US
Below is an update to the pom file template with slick's transitive dependencies.

The only one i was unsure of was the "ibxm" version? I checked the manifest file and there was no version, and I tried the latest from the ibxm site, but slick does not compile with that version. If you could inform me of what the version is I will update the repository and the template with the proper version number.

Thank you for your time,
b2s

Code:
<project>

    <modelVersion>4.0.0</modelVersion>
   
    <groupId>slick</groupId>
    <artifactId>slick</artifactId>
    <version>@VERSION@</version>
    <name>Slick - 2D Game Library based on LWJGL</name>
    <url>http://slick.cokeandcode.com</url>

    <properties>
        <lwjgl.version>2.1.0</lwjgl.version>
        <phys2D.version>060408</phys2D.version>
        <platform>win32</platform>
    </properties>

     <dependencies>

        <dependency>
            <groupId>phys2d</groupId>
            <artifactId>phys2d</artifactId>
            <version>${phys2D.version}</version>
        </dependency>

        <dependency>
            <groupId>org.lwjgl</groupId>
            <artifactId>lwjgl</artifactId>
            <version>${lwjgl.version}</version>
        </dependency>

        <dependency>
            <groupId>org.lwjgl</groupId>
            <artifactId>lwjgl-jinput</artifactId>
            <version>${lwjgl.version}</version>
        </dependency>

        <dependency>
            <groupId>org.lwjgl</groupId>
            <artifactId>lwjgl-native</artifactId>
            <version>${lwjgl.version}</version>
            <classifier>${platform}</classifier>
        </dependency>

        <dependency>
            <groupId>javax.jnlp</groupId>
            <artifactId>jnlp</artifactId>
            <version>1.2</version>
        </dependency>

        <dependency>
            <groupId>ibxm</groupId>
            <artifactId>ibxm</artifactId>
            <version>unknown</version>
        </dependency>

        <dependency>
            <groupId>jcraft</groupId>
            <artifactId>jogg</artifactId>
            <version>0.0.7</version>
        </dependency>

        <dependency>
            <groupId>jcraft</groupId>
            <artifactId>jorbis</artifactId>
            <version>0.0.15</version>
        </dependency>

    </dependencies>

    <build>

        <sourceDirectory>src</sourceDirectory>

        <plugins>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.5</source>
                    <target>1.5</target>
                </configuration>
            </plugin>


            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-dependency-plugin</artifactId>
                <configuration>
                    <artifactItems>
                        <artifactItem>
                            <groupId>org.lwjgl</groupId>
                            <artifactId>lwjgl-native</artifactId>
                            <version>${lwjgl.version}</version>
                            <type>jar</type>
                            <classifier>${platform}</classifier>
                            <outputDirectory>${project.build.directory}/natives</outputDirectory>
                            <overWrite>true</overWrite>
                        </artifactItem>
                    </artifactItems>
                </configuration>
                <executions>
                    <execution>
                        <id>unpack</id>
                        <phase>generate-resources</phase>
                        <goals>
                            <goal>unpack</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>


        </plugins>

    </build>

    <repositories>

        <repository>
            <id>b2s-repo</id>
            <url>http://b2s-repo.googlecode.com/svn/trunk/mvn-repo</url>
        </repository>

        <repository>
            <id>freehep</id>
            <url>http://java.freehep.org/maven2</url>
        </repository>

    </repositories>

</project>


Top
 Profile  
 
 Post subject:
PostPosted: Sun Jul 05, 2009 10:53 am 
Offline
Site Admin
User avatar

Joined: Thu Jan 01, 1970 12:00 am
Posts: 3143
Updated in SVN. No Idea what version of ibxm is being used, have to stick with the temporary one.

Kev


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 2 posts ] 

All times are UTC


Who is online

Users browsing this forum: No registered users and 0 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB® Forum Software © phpBB Group