-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpom.xml
156 lines (148 loc) · 4.77 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
<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.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>ano-doc</artifactId>
<version>4.3.2-SNAPSHOT</version>
<name>anotheria.net document and site generation framework</name>
<properties>
<ano-util.version>4.0.0</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.3</moskito.version>
<jdom.version>2.0.6.1</jdom.version>
<ant.version>1.8.1</ant.version>
<google.cloud-version>26.44.0</google.cloud-version>
</properties>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.anotheria</groupId>
<artifactId>ano-util</artifactId>
<version>${ano-util.version}</version>
</dependency>
<dependency>
<groupId>net.anotheria</groupId>
<artifactId>configureme</artifactId>
<version>${configureme.version}</version>
</dependency>
<dependency>
<groupId>net.anotheria</groupId>
<artifactId>moskito-core</artifactId>
<version>${moskito.version}</version>
</dependency>
<dependency>
<groupId>net.anotheria</groupId>
<artifactId>moskito-web</artifactId>
<version>${moskito.version}</version>
</dependency>
<dependency>
<groupId>net.anotheria</groupId>
<artifactId>ano-maf</artifactId>
<version>${ano-maf.version}</version>
<exclusions>
<exclusion>
<groupId>net.anotheria</groupId>
<artifactId>ano-prise</artifactId>
</exclusion>
<exclusion>
<groupId>blowfish</groupId>
<artifactId>blowfish</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>net.anotheria</groupId>
<artifactId>ano-plass</artifactId>
<version>${ano-plass.version}</version>
<exclusions>
<exclusion>
<groupId>net.anotheria</groupId>
<artifactId>ano-maf</artifactId>
</exclusion>
<exclusion>
<groupId>blowfish</groupId>
<artifactId>blowfish</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>net.anotheria</groupId>
<artifactId>ano-prise</artifactId>
<version>${ano-prise.version}</version>
<exclusions>
<exclusion>
<groupId>net.anotheria</groupId>
<artifactId>ano-maf</artifactId>
</exclusion>
<exclusion>
<groupId>blowfish</groupId>
<artifactId>blowfish</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.jdom</groupId>
<artifactId>jdom2</artifactId>
<version>${jdom.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.17.0</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.17.0</version>
</dependency>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-storage</artifactId>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-s3</artifactId>
<version>1.12.421</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-core</artifactId>
<version>1.12.421</version>
</dependency>
</dependencies>
<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:[email protected]:anotheria/ano-doc.git</connection>
<developerConnection>scm:git:[email protected]:anotheria/ano-doc.git</developerConnection>
</scm>
</project>