-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
115 lines (100 loc) · 4.76 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
<!--
######################################################################################
# LGPL License #
# #
# This file is part of the LightJason #
# Copyright (c) 2015-19, LightJason ([email protected]) #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU Lesser General Public License as #
# published by the Free Software Foundation, either version 3 of the #
# License, or (at your option) any later version. #
# #
# This program 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 Lesser General Public License for more details. #
# #
# You should have received a copy of the GNU Lesser General Public License #
# along with this program. If not, see http://www.gnu.org/licenses/ #
######################################################################################
-->
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>org.lightjason</groupId>
<artifactId>devall</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<!-- project meta information -->
<name>LightJason Java-Dev-All</name>
<description>All Java Developer Structure</description>
<url>https://github.com/LightJason/Java-Dev-All</url>
<organization>
<name>LightJason</name>
<url>http://lightjason.org</url>
</organization>
<licenses>
<license>
<name>GNU Lesser General Public License 3</name>
<url>http://www.gnu.org/licenses/lgpl-3.0.en.html</url>
</license>
</licenses>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/LightJason/Java-Dev-All/issues</url>
</issueManagement>
<scm>
<url>https://github.com/LightJason/Java-Dev-All</url>
<connection>scm:git:git://github.com:LightJason/Java-Dev-All.git</connection>
<developerConnection>scm:git:[email protected]:LightJason/Java-Dev-All.git</developerConnection>
<tag>v0.0.1</tag>
</scm>
<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>sonatype-nexus-staging</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<developers>
<developer>
<id>flashpixx</id>
<name>Philipp Kraus</name>
<email>[email protected]</email>
<timezone>Europe/Berlin</timezone>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
</developer>
</developers>
<modules>
<module>agentspeak</module>
<module>consistency</module>
<module>actions/generic</module>
<module>actions/agent</module>
<module>actions/bit</module>
<module>actions/blas</module>
<module>actions/bool</module>
<module>actions/crypto</module>
<module>actions/datetime</module>
<module>actions/graph</module>
<module>actions/grid</module>
<module>actions/interpolate</module>
<module>actions/linearprogram</module>
<module>actions/listsettuple</module>
<module>actions/map</module>
<module>actions/math</module>
<module>actions/prolog</module>
<module>actions/shape</module>
<module>actions/statistic</module>
<module>actions/storage</module>
<module>actions/string</module>
<module>actions/web</module>
</modules>
<build>
<defaultGoal>package install versions:display-dependency-updates versions:display-plugin-updates versions:display-property-updates</defaultGoal>
</build>
</project>