/tags/1.1.1/pom.xml
http://jquery-stream.googlecode.com/ · XML · 132 lines · 119 code · 13 blank · 0 comment · 0 complexity · 4194cedff29ee1811798d847c46a5ab1 MD5 · raw file
- <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/maven-v4_0_0.xsd">
-
- <modelVersion>4.0.0</modelVersion>
- <groupId>flowersinthesand</groupId>
- <artifactId>jquery-stream</artifactId>
- <name>jQuery Stream</name>
- <version>1.1.1</version>
- <packaging>war</packaging>
- <description>Comet Streaming JavaScript Library</description>
- <url>http://code.google.com/p/jquery-stream/</url>
- <inceptionYear>2011</inceptionYear>
-
- <developers>
- <developer>
- <id>flowersinthesand</id>
- <name>Donghwan Kim</name>
- <email>flowersinthesand@gmail.com</email>
- <roles>
- <role>Owner</role>
- <role>Committer</role>
- </roles>
- </developer>
- </developers>
-
- <licenses>
- <license>
- <name>The Apache Software License, Version 2.0</name>
- <url>http://www.apache.org/licenses/LICENSE-2.0</url>
- </license>
- </licenses>
- <issueManagement>
- <system>Google Code Issue Management</system>
- <url>http://code.google.com/p/jquery-stream/issues</url>
- </issueManagement>
-
- <scm>
- <url>http://code.google.com/p/jquery-stream/source/browse/</url>
- <connection>scm:svn:http://jquery-stream.googlecode.com/svn/trunk/</connection>
- <developerConnection>scm:svn:https://jquery-stream.googlecode.com/svn/trunk/</developerConnection>
- </scm>
-
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-war-plugin</artifactId>
- <configuration>
- <archive>
- <manifestEntries>
- <Built-By>Donghwan Kim</Built-By>
- </manifestEntries>
- </archive>
- <failOnMissingWebXml>false</failOnMissingWebXml>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-antrun-plugin</artifactId>
- <version>1.6</version>
- <executions>
- <execution>
- <id>release</id>
- <phase>package</phase>
- <configuration>
- <target>
- <property name="target.path" value="target/javascript" />
-
- <delete dir="${target.path}"/>
- <mkdir dir="${target.path}"/>
-
- <copy file="src/main/webapp/jquery.stream.js" todir="${target.path}" />
-
- <taskdef name="jscomp" classname="com.google.javascript.jscomp.ant.CompileTask" classpath="${ant.refid:maven.runtime.classpath}" />
- <jscomp compilationLevel="simple" output="${target.path}/jquery.stream.min.js">
- <sources dir="${target.path}">
- <file name="jquery.stream.js"/>
- </sources>
- </jscomp>
-
- <replaceregexp match="@VERSION" replace="${project.version}" flags="g" byline="true" >
- <fileset dir="${target.path}" includes="*" />
- </replaceregexp>
-
- <move todir="${target.path}">
- <fileset dir="${target.path}" includes="*" />
- <globmapper from="jquery.stream*" to="jquery.stream-${project.version}*" />
- </move>
- </target>
- </configuration>
- <goals>
- <goal>run</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
-
- <dependencies>
- <dependency>
- <groupId>javax</groupId>
- <artifactId>javaee-api</artifactId>
- <version>6.0</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.google.code.gson</groupId>
- <artifactId>gson</artifactId>
- <version>1.7.1</version>
- </dependency>
- <dependency>
- <groupId>com.google.javascript</groupId>
- <artifactId>closure-compiler</artifactId>
- <version>r1043</version>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>org.eclipse.jetty</groupId>
- <artifactId>jetty-websocket</artifactId>
- <version>8.0.0.M3</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.eclipse.jetty</groupId>
- <artifactId>jetty-util</artifactId>
- <version>8.0.0.M3</version>
- <scope>runtime</scope>
- </dependency>
- </dependencies>
-
- </project>