-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpom.xml
More file actions
59 lines (52 loc) · 2.18 KB
/
Copy pathpom.xml
File metadata and controls
59 lines (52 loc) · 2.18 KB
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
<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">
<parent>
<groupId>net.anotheria</groupId>
<artifactId>parent</artifactId>
<version>4.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>ano-doc-build</artifactId>
<packaging>pom</packaging>
<version>5.0.7-SNAPSHOT</version>
<name>ano-doc build aggregator</name>
<description>
Build aggregator for ano-doc and its Maven plugin.
Not intended to be depended upon directly — use ano-doc or ano-doc-maven-plugin.
</description>
<modules>
<module>ano-doc-core</module>
<module>ano-doc-plugin</module>
</modules>
<!--
Shared dependency versions — centralised here so both modules stay in sync.
Add any version property that is referenced by more than one module.
-->
<properties>
<ano-util.version>4.0.3</ano-util.version>
<ano-maf.version>4.0.0</ano-maf.version>
<ano-plass.version>4.0.0</ano-plass.version>
<ano-prise.version>4.0.0</ano-prise.version>
<configureme.version>4.0.0</configureme.version>
<moskito.version>4.0.7</moskito.version>
<jdom.version>2.0.6.1</jdom.version>
<google.cloud-version>26.44.0</google.cloud-version>
<jackson.version>2.21.4</jackson.version>
<aws-java-sdk.version>1.12.421</aws-java-sdk.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>libraries-bom</artifactId>
<version>${google.cloud-version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<scm>
<url>https://github.com/anotheria/ano-doc</url>
<connection>scm:git:git@github.com:anotheria/ano-doc.git</connection>
<developerConnection>scm:git:git@github.com:anotheria/ano-doc.git</developerConnection>
</scm>
</project>