2023-03-18 11:23:42 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
|
|
power-framework: Java library with many purposes of usage.
|
2024-09-02 19:21:56 +02:00
|
|
|
Copyright (C) 2016-2024 the original author or authors.
|
2023-03-18 11:23:42 +01:00
|
|
|
|
2024-09-02 19:21:56 +02:00
|
|
|
This program is free software: you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
|
|
|
as published by the Free Software Foundation, either version 3
|
|
|
|
of the License, or (at your option) any later version.
|
2023-03-18 11:23:42 +01:00
|
|
|
|
2024-09-02 19:21:56 +02:00
|
|
|
This program is distributed in the hope that it will be useful,
|
2023-03-18 11:23:42 +01:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2024-09-02 19:21:56 +02:00
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
2023-03-18 11:23:42 +01:00
|
|
|
|
2024-09-02 19:21:56 +02:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see
|
|
|
|
<https://www.gnu.org/licenses/> or write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2023-03-18 11:23:42 +01:00
|
|
|
-->
|
|
|
|
<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>
|
|
|
|
|
|
|
|
<parent>
|
2024-10-13 10:45:42 +02:00
|
|
|
<groupId>com.robertvokac.powerframework</groupId>
|
2023-03-18 11:23:42 +01:00
|
|
|
<artifactId>power-framework</artifactId>
|
2023-07-01 13:15:29 +02:00
|
|
|
<version>2.0.1-SNAPSHOT</version>
|
2023-03-18 11:23:42 +01:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>power-json</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>Power Json</name>
|
|
|
|
<description>Json functionality for the Power library</description>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<!-- Power dependencies -->
|
|
|
|
<dependency>
|
2024-10-13 10:45:42 +02:00
|
|
|
<groupId>com.robertvokac.powerframework</groupId>
|
2023-03-18 11:23:42 +01:00
|
|
|
<artifactId>power-core</artifactId>
|
|
|
|
<version>${power.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2024-10-13 10:45:42 +02:00
|
|
|
<groupId>com.robertvokac.powerframework</groupId>
|
2023-03-18 11:23:42 +01:00
|
|
|
<artifactId>power-random</artifactId>
|
|
|
|
<version>${power.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2024-10-13 10:45:42 +02:00
|
|
|
<groupId>com.robertvokac.powerframework</groupId>
|
2023-03-18 11:23:42 +01:00
|
|
|
<artifactId>power-utils</artifactId>
|
|
|
|
<version>${power.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2024-10-13 10:45:42 +02:00
|
|
|
<groupId>com.robertvokac.powerframework</groupId>
|
2023-03-18 11:23:42 +01:00
|
|
|
<artifactId>power-collections</artifactId>
|
|
|
|
<version>${power.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|