Skip to content

Commit

Permalink
Merge pull request #1118 from slovdahl/atmosphere-1.0.x-javascript
Browse files Browse the repository at this point in the history
Atmosphere 1.0.x javascript.js module
  • Loading branch information
jfarcand committed Jun 3, 2013
2 parents 1e125f4 + f40dbf1 commit d82f052
Show file tree
Hide file tree
Showing 4 changed files with 2,902 additions and 0 deletions.
39 changes: 39 additions & 0 deletions modules/javascript/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">
<parent>
<groupId>org.atmosphere</groupId>
<artifactId>atmosphere-project</artifactId>
<version>1.0.14-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.atmosphere</groupId>
<artifactId>atmosphere-javascript</artifactId>
<packaging>war</packaging>
<version>1.0.14-SNAPSHOT</version>
<name>atmosphere-javascript</name>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j-version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>yuicompressor-maven-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<goals>
<goal>compress</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
1 change: 1 addition & 0 deletions modules/javascript/src/main/webapp/WEB-INF/web.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DUMMY web.xml
Loading

0 comments on commit d82f052

Please sign in to comment.