twitter/pom.xml
branchNbHtml4J
changeset 57 9984b9f7d8c6
parent 56 68cecf6c3113
child 58 7036237a58cb
     1.1 --- a/twitter/pom.xml	Fri Dec 20 08:24:57 2013 +0100
     1.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 @@ -1,126 +0,0 @@
     1.4 -<?xml version="1.0" encoding="UTF-8"?>
     1.5 -<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">
     1.6 -  <modelVersion>4.0.0</modelVersion>
     1.7 -
     1.8 -  <groupId>org.apidesign.html.demo</groupId>
     1.9 -  <artifactId>twitter</artifactId>
    1.10 -  <version>1.0-SNAPSHOT</version>
    1.11 -  <packaging>jar</packaging>
    1.12 -  <parent>
    1.13 -      <groupId>org.apidesign.html</groupId>
    1.14 -      <artifactId>demo</artifactId>
    1.15 -      <version>1.0-SNAPSHOT</version>
    1.16 -  </parent>
    1.17 -
    1.18 -  <name>KO4Java's Twttr</name>
    1.19 -  <description>
    1.20 -      Rewrite of knockout.js example to use model written in Java displayed
    1.21 -      by HTML.
    1.22 -  </description>
    1.23 -
    1.24 -  <properties>
    1.25 -    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    1.26 -    <net.java.html.version>0.6</net.java.html.version>
    1.27 -    <project.mainclass>org.apidesign.html.demo.twitter.TwitterMain</project.mainclass>
    1.28 -  </properties>
    1.29 -
    1.30 -  <pluginRepositories>
    1.31 -      <pluginRepository>
    1.32 -          <id>java.net</id>
    1.33 -          <name>Java.net</name>
    1.34 -          <url>https://maven.java.net/content/repositories/releases/</url>
    1.35 -      </pluginRepository>
    1.36 -  </pluginRepositories>
    1.37 -
    1.38 -  <build>
    1.39 -      <plugins>
    1.40 -          <plugin>
    1.41 -              <groupId>org.apache.maven.plugins</groupId>
    1.42 -              <artifactId>maven-compiler-plugin</artifactId>
    1.43 -              <version>2.3.2</version>
    1.44 -              <configuration>
    1.45 -                  <source>1.7</source>
    1.46 -                  <target>1.7</target>
    1.47 -              </configuration>
    1.48 -          </plugin>
    1.49 -          <plugin>
    1.50 -              <groupId>org.apache.maven.plugins</groupId>
    1.51 -              <artifactId>maven-surefire-plugin</artifactId>
    1.52 -              <version>2.14.1</version>
    1.53 -              <configuration>
    1.54 -                  <systemPropertyVariables>
    1.55 -                      <vmtest.brwsrs>${brwsr}</vmtest.brwsrs>
    1.56 -                  </systemPropertyVariables>
    1.57 -              </configuration>
    1.58 -          </plugin>
    1.59 -          <plugin>
    1.60 -              <groupId>org.codehaus.mojo</groupId>
    1.61 -              <artifactId>exec-maven-plugin</artifactId>
    1.62 -              <version>1.2.1</version>
    1.63 -              <configuration>
    1.64 -                  <systemProperties>
    1.65 -                      <systemProperty>
    1.66 -                          <key>browser.rootdir</key>
    1.67 -                          <value>${basedir}/src/main/webapp/</value>
    1.68 -                      </systemProperty>
    1.69 -                  </systemProperties>
    1.70 -                  <mainClass>${project.mainclass}</mainClass>
    1.71 -              </configuration>
    1.72 -          </plugin>      
    1.73 -          <plugin>
    1.74 -              <groupId>org.apache.maven.plugins</groupId>
    1.75 -              <artifactId>maven-jar-plugin</artifactId>
    1.76 -              <version>2.4</version>
    1.77 -              <configuration>
    1.78 -                  <archive>
    1.79 -                      <manifest>
    1.80 -                          <addClasspath>true</addClasspath>
    1.81 -                          <classpathPrefix>lib/</classpathPrefix>
    1.82 -                      </manifest>
    1.83 -                  </archive>
    1.84 -              </configuration>
    1.85 -          </plugin>
    1.86 -          <plugin>
    1.87 -              <groupId>org.apache.maven.plugins</groupId>
    1.88 -              <artifactId>maven-deploy-plugin</artifactId>
    1.89 -              <version>2.7</version>
    1.90 -              <configuration>
    1.91 -                  <skip>true</skip>
    1.92 -              </configuration>
    1.93 -          </plugin>      
    1.94 -      </plugins>
    1.95 -  </build>
    1.96 -
    1.97 -  <dependencies>
    1.98 -    <dependency>
    1.99 -      <groupId>org.testng</groupId>
   1.100 -      <artifactId>testng</artifactId>
   1.101 -      <version>6.5.2</version>
   1.102 -      <scope>test</scope>
   1.103 -    </dependency>
   1.104 -    <dependency>
   1.105 -      <groupId>org.apidesign.html</groupId>
   1.106 -      <artifactId>net.java.html.json</artifactId>
   1.107 -      <version>${net.java.html.version}</version>
   1.108 -      <type>jar</type>
   1.109 -    </dependency>
   1.110 -    <dependency>
   1.111 -      <groupId>org.apidesign.html</groupId>
   1.112 -      <artifactId>net.java.html.boot</artifactId>
   1.113 -      <version>${net.java.html.version}</version>
   1.114 -      <type>jar</type>
   1.115 -    </dependency>
   1.116 -    <dependency>
   1.117 -      <groupId>org.apidesign.html</groupId>
   1.118 -      <artifactId>boot-fx</artifactId>
   1.119 -      <version>${net.java.html.version}</version>
   1.120 -      <scope>runtime</scope>
   1.121 -    </dependency>
   1.122 -    <dependency>
   1.123 -      <groupId>org.apidesign.html</groupId>
   1.124 -      <artifactId>ko-fx</artifactId>
   1.125 -      <version>${net.java.html.version}</version>
   1.126 -      <scope>runtime</scope>
   1.127 -    </dependency>
   1.128 -  </dependencies>
   1.129 -</project>