pom.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Wed, 10 Nov 2010 17:46:35 +0100
changeset 5 e1d564765efd
parent 0 258dc96b1636
child 8 3f7e9d629f55
permissions -rw-r--r--
Automate login request
jtulach@0
     1
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
jtulach@0
     2
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
jtulach@0
     3
  <modelVersion>4.0.0</modelVersion>
jtulach@0
     4
jtulach@0
     5
  <groupId>cz.xelfi</groupId>
jtulach@0
     6
  <artifactId>Feedbook</artifactId>
jtulach@0
     7
  <version>0.1</version>
jtulach@0
     8
  <packaging>jar</packaging>
jtulach@0
     9
jtulach@0
    10
  <name>Feedbook</name>
jtulach@0
    11
  <url>http://maven.apache.org</url>
jtulach@0
    12
    <build>
jtulach@0
    13
        <plugins>
jtulach@0
    14
            <plugin>
jtulach@0
    15
                <groupId>org.apache.maven.plugins</groupId>
jtulach@0
    16
                <artifactId>maven-compiler-plugin</artifactId>
jtulach@0
    17
                <version>2.0.2</version>
jtulach@0
    18
                <configuration>
jtulach@0
    19
                    <source>1.6</source>
jtulach@0
    20
                    <target>1.6</target>
jtulach@0
    21
                </configuration>
jtulach@0
    22
            </plugin>
jtulach@0
    23
        </plugins>
jtulach@0
    24
    </build>
jtulach@0
    25
    <properties>
jtulach@0
    26
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
jtulach@0
    27
  </properties>
jtulach@0
    28
jtulach@0
    29
  <dependencies>
jtulach@0
    30
    <dependency>
jtulach@0
    31
      <groupId>junit</groupId>
jtulach@0
    32
      <artifactId>junit</artifactId>
jtulach@0
    33
      <version>3.8.1</version>
jtulach@0
    34
      <scope>test</scope>
jtulach@0
    35
    </dependency>
jtulach@0
    36
    <dependency>
jtulach@0
    37
      <groupId>com.google.code.facebookapi</groupId>
jtulach@0
    38
      <artifactId>facebook-java-api</artifactId>
jtulach@0
    39
      <version>3.0.4</version>
jtulach@0
    40
    </dependency>
jtulach@2
    41
    <dependency>
jtulach@2
    42
      <groupId>net.java.dev.rome</groupId>
jtulach@2
    43
      <artifactId>rome</artifactId>
jtulach@2
    44
      <version>1.0.0</version>
jtulach@2
    45
    </dependency>
jtulach@0
    46
  </dependencies>
jtulach@0
    47
</project>