Account Options

  1. Sign in
The old Google Groups will be going away soon.
Switch to the new Google Groups.
Google Groups Home
« Groups Home
Maven pom for GStreamer-java
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  2 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
stig.lau  
View profile  
 More options Dec 23 2008, 2:35 pm
From: "stig.lau" <stig....@gmail.com>
Date: Tue, 23 Dec 2008 11:35:50 -0800 (PST)
Local: Tues, Dec 23 2008 2:35 pm
Subject: Maven pom for GStreamer-java
I've tossed up a Maven pom for GStreamer-java I thought I'd share in
the spirit of Xmas.
It should be able to compile and package source, bin and javadocs
correctly for distribution with no hassle. Distributing Maven fashion
is possible to do by placing the files in SVN.
There are some problems regarding finding a correct version of SWT in
a public repo, and the tests didn't run on my mac rig.
Please ask if you have questions.

<?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>
    <groupId>org.gstreamer</groupId>
    <artifactId>gstreamer-java</artifactId>
    <version>1.0</version>
    <packaging>jar</packaging>

    <name>GStreamer</name>
    <url>http://code.google.com/p/gstreamer-java</url>

    <dependencies>
        <dependency>
            <groupId>net.java.dev.jna</groupId>
            <artifactId>jna</artifactId>
            <version>3.0.4</version>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.4</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>swt</groupId>
            <artifactId>${swt.os-specific-dep}</artifactId>
            <version>3.0m7</version>
        </dependency>
    </dependencies>

    <build>
        <sourceDirectory>src</sourceDirectory>
        <testSourceDirectory>test</testSourceDirectory>

        <resources>
            <resource>
                <directory>src</directory>
                <excludes>
                    <exclude>**/*.java</exclude>
                </excludes>
                <filtering>false</filtering>
            </resource>
        </resources>

        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.5</source>
                    <target>1.5</target>
                </configuration>
            </plugin>
        </plugins>
    </build>

    <!-- Repository for JNA dependency -->
    <repositories>
        <repository>
            <id>java.net.maven</id>
            <url>http://download.java.net/maven/2</url>
        </repository>
    </repositories>

    <!-- For creating the name of the swt dependency -->
    <profiles>
        <profile>
            <id>mac</id>
            <activation>
                <os>
                    <family>macosx</family>
                </os>
            </activation>
            <properties>
                <swt.os-specific-dep>swt-macosx</swt.os-specific-dep>
            </properties>
        </profile>
        <profile>
            <id>unix</id>
            <activation>
                <os>
                    <family>unix</family>
                </os>
            </activation>
            <properties>
                <swt.os-specific-dep>swt-linux-gtk</swt.os-specific-
dep>
            </properties>
        </profile>
        <profile>
            <id>windows</id>
            <activation>
                <os>
                    <family>windows</family>
                </os>
            </activation>
            <properties>
                <swt.os-specific-dep>swt-win32</swt.os-specific-dep>
            </properties>
        </profile>
    </profiles>
</project>


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
stig.lau  
View profile  
 More options Dec 23 2008, 4:39 pm
From: "stig.lau" <stig....@gmail.com>
Date: Tue, 23 Dec 2008 13:39:45 -0800 (PST)
Local: Tues, Dec 23 2008 4:39 pm
Subject: Re: Maven pom for GStreamer-java
Thougth I'd advertize for my blogpost on GStreamer-Java while I'm at
it.
http://stigl.wordpress.com/gstreamer-multimedia-fun-on-a-plugin-archi...

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »