71 lines
2.5 KiB
XML
71 lines
2.5 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
power-framework: Java library with many purposes of usage.
|
|
Copyright (C) 2016-2024 the original author or authors.
|
|
|
|
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.
|
|
|
|
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 General Public License for more details.
|
|
|
|
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.
|
|
-->
|
|
<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>
|
|
<groupId>com.robertvokac.powerframework</groupId>
|
|
<artifactId>power-framework</artifactId>
|
|
<version>2.0.1-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>power-utils</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>Power Utils</name>
|
|
<description>Utils for the Power library</description>
|
|
|
|
<properties>
|
|
<checkstyle.skip>true</checkstyle.skip>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.robertvokac.powerframework</groupId>
|
|
<artifactId>power-core</artifactId>
|
|
<version>${power.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.robertvokac.powerframework</groupId>
|
|
<artifactId>power-reflection</artifactId>
|
|
<version>${power.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jgrapht</groupId>
|
|
<artifactId>jgrapht-core</artifactId>
|
|
<version>1.5.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.robertvokac.powerframework</groupId>
|
|
<artifactId>power-text</artifactId>
|
|
<version>${power.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|