pom.xml
changeset 0 258dc96b1636
child 2 21a08b9be14a
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/pom.xml	Tue Nov 09 21:01:16 2010 +0100
     1.3 @@ -0,0 +1,42 @@
     1.4 +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     1.5 +  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     1.6 +  <modelVersion>4.0.0</modelVersion>
     1.7 +
     1.8 +  <groupId>cz.xelfi</groupId>
     1.9 +  <artifactId>Feedbook</artifactId>
    1.10 +  <version>0.1</version>
    1.11 +  <packaging>jar</packaging>
    1.12 +
    1.13 +  <name>Feedbook</name>
    1.14 +  <url>http://maven.apache.org</url>
    1.15 +    <build>
    1.16 +        <plugins>
    1.17 +            <plugin>
    1.18 +                <groupId>org.apache.maven.plugins</groupId>
    1.19 +                <artifactId>maven-compiler-plugin</artifactId>
    1.20 +                <version>2.0.2</version>
    1.21 +                <configuration>
    1.22 +                    <source>1.6</source>
    1.23 +                    <target>1.6</target>
    1.24 +                </configuration>
    1.25 +            </plugin>
    1.26 +        </plugins>
    1.27 +    </build>
    1.28 +    <properties>
    1.29 +    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    1.30 +  </properties>
    1.31 +
    1.32 +  <dependencies>
    1.33 +    <dependency>
    1.34 +      <groupId>junit</groupId>
    1.35 +      <artifactId>junit</artifactId>
    1.36 +      <version>3.8.1</version>
    1.37 +      <scope>test</scope>
    1.38 +    </dependency>
    1.39 +    <dependency>
    1.40 +      <groupId>com.google.code.facebookapi</groupId>
    1.41 +      <artifactId>facebook-java-api</artifactId>
    1.42 +      <version>3.0.4</version>
    1.43 +    </dependency>
    1.44 +  </dependencies>
    1.45 +</project>