-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpom.xml
122 lines (104 loc) · 3.72 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
<?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>
<!--
Bundle pom for Powertac server, and parent of all server modules.
To build the server, mvn clean install
To generate javadocs, mvn javadoc:aggregate
-->
<artifactId>powertac-server</artifactId>
<version>1.9.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Power TAC server modules</name>
<url>https://github.com/powertac/powertac-server/</url>
<parent>
<groupId>org.powertac</groupId>
<artifactId>powertac-parent</artifactId>
<version>1.9.1-SNAPSHOT</version>
<relativePath />
</parent>
<!-- Common dependencies across all server modules -->
<dependencies>
<dependency>
<groupId>org.powertac</groupId>
<artifactId>common</artifactId>
<version>1.9.1-SNAPSHOT</version>
</dependency>
<!-- Testing - not inherited from common due to test scope -->
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<!-- 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>logtool-core</module>
<module>server-main</module>
<!-- <module>visualizer2</module> -->
</modules>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<reportSets>
<reportSet>
<inherited>false</inherited>
<reports>
<report>aggregate</report>
<report>test-aggregate</report>
</reports>
</reportSet>
</reportSets>
<configuration>
<includeDependencySources>true</includeDependencySources>
<includeTransitiveDependencySources>true</includeTransitiveDependencySources>
<dependencySourceIncludes>
<dependencySourceInclude>org.powertac:*</dependencySourceInclude>
</dependencySourceIncludes>
</configuration>
</plugin>
</plugins>
</reporting>
<!-- Sonatype OSS repo for resolving snapshot dependencies -->
<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:[email protected]:powertac/powertac-server.git</developerConnection>
<url>https://github.com/powertac/powertac-server/</url>
<tag>HEAD</tag>
</scm>
<distributionManagement>
<!-- Even though we don't use mvn site:deploy to publish docs, the -->
<!-- site plugin complains if this section is not present -->
<site>
<!-- <id>https://powertac.github.io/server/</id> -->
<!-- <url>https://powertac.github.io/server/</url> -->
<id>local-site</id>
<url>file:/usr/local/share/powertac-site/</url>
</site>
</distributionManagement>
</project>