This repository has been archived by the owner on Jan 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
pom.xml
executable file
·94 lines (83 loc) · 3.09 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<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>
<parent>
<groupId>com.ovea</groupId>
<artifactId>ovea</artifactId>
<version>3</version>
</parent>
<artifactId>ovea-cors</artifactId>
<version>1.10.ga-SNAPSHOT</version>
<packaging>jar</packaging>
<name>ovea-cors</name>
<description>Better CORS support for IE 8+</description>
<scm>
<connection>scm:git:[email protected]:Ovea/cors.git</connection>
<developerConnection>scm:git:[email protected]:Ovea/cors.git</developerConnection>
<url>http://github.com/Ovea/cors</url>
</scm>
<properties>
<jdk.version>1.7</jdk.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/.gitignore</exclude>
<exclude>.idea/**</exclude>
<exclude>src/test/webapp/*.js</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>yuicompressor-maven-plugin</artifactId>
<version>1.3.0</version>
<configuration>
<suffix>.min</suffix>
</configuration>
<executions>
<execution>
<goals>
<goal>compress</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-util</artifactId>
<version>8.1.2.v20120308</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<version>8.1.2.v20120308</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mortbay.jetty</groupId>
<artifactId>servlet-api</artifactId>
<version>3.0.20100224</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.ovea</groupId>
<artifactId>ovea-dynamic-markup</artifactId>
<version>3.1.ga</version>
</dependency>
<dependency>
<groupId>org.testatoo.container</groupId>
<artifactId>testatoo-container-jetty</artifactId>
<version>1.1.ga</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>