forked from google/auto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-pom.xml
27 lines (27 loc) · 835 Bytes
/
build-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
<!-- A pure convenience for local builds and travis-ci. -->
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>build-only</groupId>
<artifactId>build-only</artifactId>
<version>NO_VERSION</version>
<packaging>pom</packaging>
<modules>
<module>.</module>
<module>common</module>
<module>factory</module>
<module>service</module>
<module>value</module>
</modules>
<distributionManagement>
<repository>
<id>sonatype-nexus-staging</id>
<name>Nexus Release Repository</name>
<url>file:///tmp/auto_project_maven_fake_repo/</url>
</repository>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>file:///tmp/auto_project_maven_fake_repo/</url>
</snapshotRepository>
</distributionManagement>
</project>