java/nekurak.net-mvn/pom.xml
author František Kučera <franta-hg@frantovo.cz>
Thu Jan 13 23:54:59 2011 +0100 (2011-01-13)
changeset 166 7f9c6d10c3f6
permissions -rw-r--r--
Spokojenost, štítky, zjednodušení CSS.
franta-hg@5
     1
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
franta-hg@5
     2
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
franta-hg@5
     3
  <modelVersion>4.0.0</modelVersion>
franta-hg@5
     4
  <groupId>cz.frantovo</groupId>
franta-hg@5
     5
  <artifactId>nekurak.net-mvn</artifactId>
franta-hg@5
     6
  <packaging>war</packaging>
franta-hg@5
     7
  <version>1.0-SNAPSHOT</version>
franta-hg@5
     8
  <name>nekurak.net-mvn JEE5 Webapp</name>
franta-hg@5
     9
  <url>http://maven.apache.org</url>
franta-hg@5
    10
  <dependencies>
franta-hg@5
    11
franta-hg@5
    12
    <dependency>
franta-hg@5
    13
      <groupId>javax.servlet</groupId>
franta-hg@5
    14
      <artifactId>servlet-api</artifactId>
franta-hg@5
    15
      <version>2.5</version>
franta-hg@5
    16
      <scope>provided</scope>
franta-hg@5
    17
    </dependency>
franta-hg@5
    18
franta-hg@5
    19
    <dependency>
franta-hg@5
    20
      <groupId>javax.servlet.jsp</groupId>
franta-hg@5
    21
      <artifactId>jsp-api</artifactId>
franta-hg@5
    22
      <version>2.1</version>
franta-hg@5
    23
      <scope>provided</scope>
franta-hg@5
    24
    </dependency>
franta-hg@5
    25
franta-hg@5
    26
    <dependency>
franta-hg@5
    27
      <groupId>junit</groupId>
franta-hg@5
    28
      <artifactId>junit</artifactId>
franta-hg@5
    29
      <version>3.8.1</version>
franta-hg@5
    30
      <scope>test</scope>
franta-hg@5
    31
    </dependency>
franta-hg@5
    32
    
franta-hg@5
    33
  </dependencies>
franta-hg@5
    34
  <build>
franta-hg@5
    35
    <plugins>
franta-hg@5
    36
      <plugin>
franta-hg@5
    37
        <groupId>org.apache.maven.plugins</groupId>
franta-hg@5
    38
        <artifactId>maven-compiler-plugin</artifactId>
franta-hg@5
    39
        <version>2.0.2</version>
franta-hg@5
    40
        <configuration>
franta-hg@5
    41
          <source>1.5</source>
franta-hg@5
    42
          <target>1.5</target>
franta-hg@5
    43
        </configuration>
franta-hg@5
    44
      </plugin>
franta-hg@5
    45
    </plugins>
franta-hg@5
    46
    <finalName>nekurak.net-mvn</finalName>
franta-hg@5
    47
  </build>
franta-hg@5
    48
    <properties>
franta-hg@5
    49
        <netbeans.hint.deploy.server>gfv3ee6</netbeans.hint.deploy.server>
franta-hg@5
    50
    </properties>
franta-hg@5
    51
</project>
franta-hg@5
    52