forked from powertac/powertac-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
64 lines (57 loc) · 2.22 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
<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>
<!--
Bundle pom for Powertac server. Individual components do not
inherit from this pom; instead they inherit from server-master,
as does this pom. Note that this module is only needed for
development; there is no need to deploy or release it, and there
are no dependencies on it, so its version number is irrelevant.
-->
<!--
Note that this does not seem to work for release processing,
because maven does not do the right thing with the git submodules.
However, it does work for local installation and snapshot
deployment.
-->
<!-- pull in the project master pom -->
<parent>
<groupId>org.powertac</groupId>
<artifactId>server-master</artifactId>
<version>1.3.0-SNAPSHOT</version>
<relativePath />
</parent>
<artifactId>powertac-server</artifactId>
<version>1.3.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Power TAC server modules</name>
<!-- server components -->
<modules>
<module>server-interface</module>
<module>accounting</module>
<module>auctioneer</module>
<module>balancing-market</module>
<module>customer-models</module>
<module>evcustomer</module>
<module>default-broker</module>
<module>distribution-utility</module>
<module>factored-customer</module>
<module>genco</module>
<module>household-customer</module>
<module>officecomplex-customer</module>
<module>server-main</module>
<module>webapp-dependencies</module>
<module>visualizer</module>
</modules>
<!-- Sonatype OSS repo for resolving snapshot modules -->
<repositories>
<repository>
<id>sonatype</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
</repositories>
<scm>
<connection>scm:git:git//github.com/powertac/powertac-server.git</connection>
<developerConnection>scm:git:git@github.com:powertac/powertac-server.git</developerConnection>
<url>https://github.com/powertac/powertac-server</url>
</scm>
</project>