193 lines
6.5 KiB
XML
193 lines
6.5 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
power-framework: Java library with many purposes of usage.
|
|
Copyright (C) 2016-2022 the original author or authors.
|
|
|
|
This library 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;
|
|
version 2.1 of the License only.
|
|
|
|
This library 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 library; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 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>org.nanoboot.essential</groupId>
|
|
<artifactId>nanoboot-parent</artifactId>
|
|
<version>0.1.0</version>
|
|
</parent>
|
|
|
|
<groupId>org.nanoboot.powerframework</groupId>
|
|
<artifactId>power-framework</artifactId>
|
|
<version>2.0.0</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<name>Power Framework</name>
|
|
<description>
|
|
Power Framework is a bundle of Java many purposes libraries
|
|
like working with texts, randomness, collections, json format,
|
|
time, database, files, desktop graphics and some others.
|
|
</description>
|
|
|
|
<url>http://robertvokac/products/power-framework</url>
|
|
<inceptionYear>2016</inceptionYear>
|
|
<modules>
|
|
<module>power-core</module>
|
|
<module>power-text</module>
|
|
<module>power-random</module>
|
|
<module>power-utils</module>
|
|
<module>power-collections</module>
|
|
|
|
<module>power-json</module>
|
|
<module>power-time</module>
|
|
<module>power-log</module>
|
|
<module>power-io</module>
|
|
<module>power-web</module>
|
|
|
|
<module>power-sql</module>
|
|
<module>power-db</module>
|
|
<module>power-persistence</module>
|
|
|
|
<module>power-view</module>
|
|
<module>power-xml</module>
|
|
<module>power-reflection</module>
|
|
<module>power-mail</module>
|
|
|
|
<module>power-security</module>
|
|
<!-- TODO:
|
|
power-concurrency
|
|
power-net
|
|
-->
|
|
</modules>
|
|
|
|
<properties>
|
|
<power.version>2.0.0</power.version>
|
|
<checkstyle.skip>true</checkstyle.skip><!-- TODO: make false-->
|
|
</properties>
|
|
|
|
<contributors>
|
|
<contributor>
|
|
<name>Robert Vokac</name>
|
|
<email>robertvokac@nanoboot.org</email>
|
|
<roles>
|
|
<role>developer</role>
|
|
<role>project manager</role>
|
|
</roles>
|
|
</contributor>
|
|
</contributors>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.jacoco</groupId>
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
|
<version>${jacoco-maven-plugin.version}</version>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>prepare-agent</goal>
|
|
</goals>
|
|
</execution>
|
|
<!-- attached to Maven test phase -->
|
|
<execution>
|
|
<id>report</id>
|
|
<phase>test</phase>
|
|
<goals>
|
|
<goal>report</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
<configuration>
|
|
<skip>${checkstyle.skip}</skip>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<annotationProcessorPaths>
|
|
<path>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>${lombok.version}</version>
|
|
</path>
|
|
</annotationProcessorPaths>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>${maven-surefire-plugin.version}</version>
|
|
<configuration>
|
|
<forkCount>0</forkCount>
|
|
<useSystemClassLoader>false</useSystemClassLoader>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<dependencies>
|
|
<!-- Other dependencies -->
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>${junit4.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>${lombok.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>releases</id>
|
|
<name>nanoboot-releases-repository</name>
|
|
<url>https://maven.nanoboot.org/releases</url>
|
|
</repository>
|
|
<repository>
|
|
<id>snapshots</id>
|
|
<name>nanoboot-snapshots-repository</name>
|
|
<url>https://maven.nanoboot.org/snapshots</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>releases</id>
|
|
<name>nanoboot-releases-repository</name>
|
|
<url>https://maven.nanoboot.org/releases</url>
|
|
</pluginRepository>
|
|
<pluginRepository>
|
|
<id>snapshots</id>
|
|
<name>nanoboot-snapshots-repository</name>
|
|
<url>https://maven.nanoboot.org/snapshots</url>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
|
|
</project>
|