-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpom.xml
More file actions
67 lines (59 loc) · 2.19 KB
/
pom.xml
File metadata and controls
67 lines (59 loc) · 2.19 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
60
61
62
63
64
65
66
67
<?xml version="1.0" encoding="UTF-8"?>
<!--
~
~ Branch
~ Copyright © 2021 Aurium
~
~ Branch is free software: you can redistribute it and/or modify
~ It under the terms of the GNU Affero General Public License as
~ published by the Free Software Foundation, either version 3 of the
~ License, or (at your option) any later version.
~
~ Branch is distributed in the hope that it will be useful,
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
~ GNU Affero General Public License for more details.
~
~ You should have received a copy of the GNU Affero General Public License
~ along with Branch. If not, see <https://www.gnu.org/licenses/>
~ and navigate to version 3 of the GNU Affero General Public License.
~
-->
<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>
<artifactId>branch</artifactId>
<packaging>pom</packaging>
<version>0.1.0</version>
<parent>
<groupId>me.aurium</groupId>
<artifactId>insect</artifactId>
<version>0.2.1</version>
</parent>
<modules>
<module>core</module>
<module>core-tests</module>
<module>spigot-impl</module>
</modules>
<properties>
<maven.compiler.source>${compiler.version}</maven.compiler.source>
<maven.compiler.target>${compiler.version}</maven.compiler.target>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<artifactId>branch-core</artifactId>
<groupId>me.aurium</groupId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<repositories>
<repository>
<id>jfrog</id>
<name>a0phrw82hnl4g-artifactory-primary-0-releases</name>
<url>https://aurium.jfrog.io/artifactory/aurium-libs-release-local</url>
</repository>
</repositories>
</project>