-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpom.xml
More file actions
48 lines (44 loc) · 1.57 KB
/
Copy pathpom.xml
File metadata and controls
48 lines (44 loc) · 1.57 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
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.example</groupId>
<artifactId>weather</artifactId>
<packaging>pom</packaging>
<version>${revision}</version>
<modules>
<module>core</module>
<module>core-avaje</module>
<module>core-hk2</module>
<module>core-inverno</module>
<module>impl-avaje</module>
<module>impl-dagger</module>
<module>impl-dirk</module>
<module>impl-feather</module>
<module>impl-guice</module>
<module>impl-hk2</module>
<module>impl-inverno</module>
<module>impl-jaywire</module>
<module>impl-jbock</module>
<module>impl-spring</module>
<module>impl-weld</module>
</modules>
<properties>
<revision>1.0.0</revision>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<release>${maven.compiler.target}</release>
</configuration>
</plugin>
</plugins>
</build>
</project>