twitter/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 24 Sep 2013 21:02:32 +0200
changeset 47 4109cd3a4aa4
parent 44 e3305312184c
permissions -rw-r--r--
Use lastest, 0.6 version
jtulach@0
     1
<?xml version="1.0" encoding="UTF-8"?>
jtulach@0
     2
<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/xsd/maven-4.0.0.xsd">
jtulach@0
     3
  <modelVersion>4.0.0</modelVersion>
jtulach@0
     4
jtulach@44
     5
  <groupId>org.apidesign.html.demo</groupId>
jtulach@44
     6
  <artifactId>twitter</artifactId>
jtulach@0
     7
  <version>1.0-SNAPSHOT</version>
jtulach@0
     8
  <packaging>jar</packaging>
jtulach@0
     9
  <parent>
jtulach@0
    10
      <groupId>org.apidesign.html</groupId>
jtulach@0
    11
      <artifactId>demo</artifactId>
jtulach@0
    12
      <version>1.0-SNAPSHOT</version>
jtulach@0
    13
  </parent>
jtulach@0
    14
jtulach@44
    15
  <name>KO4Java's Twttr</name>
jtulach@0
    16
  <description>
jtulach@44
    17
      Rewrite of knockout.js example to use model written in Java displayed
jtulach@44
    18
      by HTML.
jtulach@0
    19
  </description>
jtulach@0
    20
jtulach@0
    21
  <properties>
jtulach@0
    22
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
jaroslav@47
    23
    <net.java.html.version>0.6</net.java.html.version>
jtulach@44
    24
    <project.mainclass>org.apidesign.html.demo.twitter.TwitterMain</project.mainclass>
jtulach@0
    25
  </properties>
jtulach@0
    26
jtulach@0
    27
  <pluginRepositories>
jtulach@0
    28
      <pluginRepository>
jtulach@0
    29
          <id>java.net</id>
jtulach@0
    30
          <name>Java.net</name>
jtulach@3
    31
          <url>https://maven.java.net/content/repositories/releases/</url>
jtulach@0
    32
      </pluginRepository>
jtulach@0
    33
  </pluginRepositories>
jtulach@0
    34
jtulach@0
    35
  <build>
jtulach@0
    36
      <plugins>
jtulach@0
    37
          <plugin>
jtulach@0
    38
              <groupId>org.apache.maven.plugins</groupId>
jtulach@0
    39
              <artifactId>maven-compiler-plugin</artifactId>
jtulach@0
    40
              <version>2.3.2</version>
jtulach@0
    41
              <configuration>
jtulach@0
    42
                  <source>1.7</source>
jtulach@0
    43
                  <target>1.7</target>
jtulach@0
    44
              </configuration>
jtulach@0
    45
          </plugin>
jtulach@0
    46
          <plugin>
jtulach@0
    47
              <groupId>org.apache.maven.plugins</groupId>
jtulach@0
    48
              <artifactId>maven-surefire-plugin</artifactId>
jtulach@0
    49
              <version>2.14.1</version>
jtulach@0
    50
              <configuration>
jtulach@0
    51
                  <systemPropertyVariables>
jtulach@0
    52
                      <vmtest.brwsrs>${brwsr}</vmtest.brwsrs>
jtulach@0
    53
                  </systemPropertyVariables>
jtulach@0
    54
              </configuration>
jtulach@0
    55
          </plugin>
jtulach@0
    56
          <plugin>
jtulach@44
    57
              <groupId>org.codehaus.mojo</groupId>
jtulach@44
    58
              <artifactId>exec-maven-plugin</artifactId>
jtulach@44
    59
              <version>1.2.1</version>
jtulach@44
    60
              <configuration>
jtulach@44
    61
                  <systemProperties>
jtulach@44
    62
                      <systemProperty>
jtulach@44
    63
                          <key>browser.rootdir</key>
jtulach@44
    64
                          <value>${basedir}/src/main/webapp/</value>
jtulach@44
    65
                      </systemProperty>
jtulach@44
    66
                  </systemProperties>
jtulach@44
    67
                  <mainClass>${project.mainclass}</mainClass>
jtulach@44
    68
              </configuration>
jtulach@44
    69
          </plugin>      
jtulach@44
    70
          <plugin>
jtulach@0
    71
              <groupId>org.apache.maven.plugins</groupId>
jtulach@0
    72
              <artifactId>maven-jar-plugin</artifactId>
jtulach@0
    73
              <version>2.4</version>
jtulach@0
    74
              <configuration>
jtulach@0
    75
                  <archive>
jtulach@0
    76
                      <manifest>
jtulach@0
    77
                          <addClasspath>true</addClasspath>
jtulach@0
    78
                          <classpathPrefix>lib/</classpathPrefix>
jtulach@0
    79
                      </manifest>
jtulach@0
    80
                  </archive>
jtulach@0
    81
              </configuration>
jtulach@0
    82
          </plugin>
jtulach@0
    83
          <plugin>
jtulach@0
    84
              <groupId>org.apache.maven.plugins</groupId>
jtulach@0
    85
              <artifactId>maven-deploy-plugin</artifactId>
jtulach@0
    86
              <version>2.7</version>
jtulach@0
    87
              <configuration>
jtulach@0
    88
                  <skip>true</skip>
jtulach@0
    89
              </configuration>
jtulach@0
    90
          </plugin>      
jtulach@0
    91
      </plugins>
jtulach@0
    92
  </build>
jtulach@0
    93
jtulach@0
    94
  <dependencies>
jtulach@0
    95
    <dependency>
jtulach@0
    96
      <groupId>org.testng</groupId>
jtulach@0
    97
      <artifactId>testng</artifactId>
jtulach@0
    98
      <version>6.5.2</version>
jtulach@0
    99
      <scope>test</scope>
jtulach@0
   100
    </dependency>
jtulach@0
   101
    <dependency>
jtulach@0
   102
      <groupId>org.apidesign.html</groupId>
jtulach@0
   103
      <artifactId>net.java.html.json</artifactId>
jtulach@0
   104
      <version>${net.java.html.version}</version>
jtulach@0
   105
      <type>jar</type>
jtulach@0
   106
    </dependency>
jtulach@44
   107
    <dependency>
jtulach@44
   108
      <groupId>org.apidesign.html</groupId>
jtulach@44
   109
      <artifactId>net.java.html.boot</artifactId>
jtulach@44
   110
      <version>${net.java.html.version}</version>
jtulach@44
   111
      <type>jar</type>
jtulach@44
   112
    </dependency>
jtulach@44
   113
    <dependency>
jtulach@44
   114
      <groupId>org.apidesign.html</groupId>
jtulach@44
   115
      <artifactId>boot-fx</artifactId>
jtulach@44
   116
      <version>${net.java.html.version}</version>
jtulach@44
   117
      <scope>runtime</scope>
jtulach@44
   118
    </dependency>
jtulach@44
   119
    <dependency>
jtulach@44
   120
      <groupId>org.apidesign.html</groupId>
jtulach@44
   121
      <artifactId>ko-fx</artifactId>
jtulach@44
   122
      <version>${net.java.html.version}</version>
jtulach@44
   123
      <scope>runtime</scope>
jtulach@44
   124
    </dependency>
jtulach@0
   125
  </dependencies>
jtulach@0
   126
</project>