mirror of
https://github.com/wahyd4/comet.git
synced 2026-08-13 15:05:50 +10:00
56 lines
1.4 KiB
XML
56 lines
1.4 KiB
XML
<?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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<name>comet4j</name>
|
|
<groupId>org.comet4j</groupId>
|
|
<artifactId>comet4j</artifactId>
|
|
<!-- <version>0.1.8</version> -->
|
|
<version>0.1.8-SNAPSHOT</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<properties>
|
|
<surefire.test.skip>true</surefire.test.skip>
|
|
</properties>
|
|
|
|
<build>
|
|
<sourceDirectory>src</sourceDirectory>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>1.6</source>
|
|
<target>1.6</target>
|
|
<encoding>UTF-8</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>servlet-api</artifactId>
|
|
<version>2.5</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.tomcat</groupId>
|
|
<artifactId>catalina</artifactId>
|
|
<version>6.0.35</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>mvnrepository</id>
|
|
<name>mvnrepository</name>
|
|
<url>http://mvnrepository.com/artifact</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
</project>
|