-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpom.xml
199 lines (199 loc) · 6.83 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
<?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>
<groupId>mx.ecosur</groupId>
<artifactId>multi-game</artifactId>
<version>2.1.4-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Participatory Gaming Project</name>
<inceptionYear>June 2008</inceptionYear>
<url>http://chiapasgames.net/project</url>
<licenses>
<license>
<name>Academic Free License ("AFL") v. 3.0</name>
<url>http://www.opensource.org/licenses/afl-3.0.php</url>
<distribution>repo</distribution>
<comments>
Copyright (C) 2010 ECOSUR, Andrew Waterman and Max Pimm
</comments>
</license>
</licenses>
<scm>
<!-- To use SCM, define "source-repository" in your settings.xml as the directory containing this project
and then modify the following line to point to the directory this project lives in -->
<connection>scm:git:file://localhost/{$source-repository}/multigame.super</connection>
<developerConnection>scm:git:ssh://github.com:ecosur-sistemas-complejos/MultiGame.git</developerConnection>
<tag>multi-game-2.1.3</tag>
</scm>
<developers>
<developer>
<name>Andrew Waterman</name>
<email>[email protected]</email>
<roles>
<role>Architect</role>
<role>Developer</role>
<role>Game Designer</role>
</roles>
</developer>
<developer>
<name>Max Pimm</name>
<email>[email protected]</email>
<roles>
<role>Developer</role>
<role>Game Designer</role>
</roles>
</developer>
</developers>
<contributors>
<contributor>
<name>Luis Garcia Barrios</name>
<email>[email protected]</email>
<roles>
<role>Project Advisor</role>
<role>Game Designer</role>
</roles>
</contributor>
</contributors>
<organization>
<name>ECOSUR Sistemas Complejos</name>
<url>http://www.chiapasgames.org</url>
</organization>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<drools.version>5.4.0.Beta2</drools.version>
<hibernate-version>4.1.7.Final</hibernate-version>
<flexmojos-version>4.1-beta</flexmojos-version>
</properties>
<dependencies>
<!-- Fix for SLF4J binding (missing from drools-solver-core -->
<!-- Use slf4j-jcl to show solver logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-nop</artifactId>
<version>1.6.1</version>
</dependency>
</dependencies>
<profiles>
<profile>
<id>default</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<modules>
<module>Engine</module>
<module>Games</module>
<module>Deploy</module>
</modules>
</profile>
<profile>
<id>deploy</id>
<modules>
<module>Deploy</module>
</modules>
</profile>
<profile>
<id>empty</id>
</profile>
</profiles>
<repositories>
<repository>
<id>repository.jboss.com</id>
<url>http://repository.jboss.org/nexus/content/groups/public-jboss/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<repository>
<id>maven-nuxeo</id>
<name>Maven Nuxeo Repository</name>
<url>https://maven.nuxeo.org/nexus/content/groups/public/</url>
<layout>default</layout>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</snapshots>
</repository>
<repository>
<id>flex-mojos-repository</id>
<url>http://repository.sonatype.org/content/groups/flexgroup/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>ibiblio.mirror</id>
<url>http://mirrors.ibiblio.org/pub/mirrors/maven2</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</repository>
<repository>
<id>maven2-repository.dev.java.net</id>
<name>Java.net Repository for Maven</name>
<url>http://download.java.net/maven/2/</url>
<layout>default</layout>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>sonatype-plugin-repo</id>
<url>http://repository.sonatype.org/content/groups/flexgroup/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.0-beta-2</version>
<configuration>
<reportPlugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>2.3.3</version>
<configuration>
<xmlOutput>true</xmlOutput>
<xmlOutputDirectory>target/site</xmlOutputDirectory>
</configuration>
</plugin>
</reportPlugins>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.3</version>
<configuration>
</configuration>
</plugin>
</plugins>
</build>
</project>