-
Notifications
You must be signed in to change notification settings - Fork 15
/
pom.xml
95 lines (94 loc) · 3.21 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
95
<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>
<artifactId>api-ign-proxy</artifactId>
<packaging>jar</packaging>
<name>API IGN Proxy</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<parent>
<groupId>es.ign.api</groupId>
<artifactId>api-ign-parent</artifactId>
<version>5.0.0</version>
<relativePath>../api-ign-parent/pom.xml</relativePath>
</parent>
<licenses>
<license>
<name>European Union Public Licence - EUPL v.1.1</name>
<url>LICENSE.txt</url>
</license>
</licenses>
<developers>
<developer>
<organization>Guadaltel S.A.</organization>
<organizationUrl>www.guadaltel.com</organizationUrl>
</developer>
</developers>
<!-- <repositories>
<repository>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
<id>guadaltel-repo</id>
<name>Guadaltel Maven Repository</name>
<url>http://maven.guadaltel.es/nexus/content/groups/public</url>
</repository>
</repositories> -->
<build>
<finalName>api-core</finalName>
<defaultGoal>install</defaultGoal>
<plugins>
<!-- Set a JDK compiler level -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<!-- Make this jar executable -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<!-- DO NOT include log4j.properties file in your Jar -->
<!-- <excludes> <exclude>**/log4j.properties</exclude> </excludes> -->
<archive>
<manifest>
<!-- Jar file entry point -->
<mainClass>es.ign.api.proxy.ProxyRedirect</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.4</version>
</dependency>
<dependency>
<groupId>es.guadaltel.framework</groupId>
<artifactId>ticket</artifactId>
<version>0.0.1</version>
<scope>system</scope>
<systemPath>${basedir}/lib/ticket-0.0.1.jar</systemPath>
</dependency>
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>1.2.2</version>
</dependency>
</dependencies>
</project>