cybertomp-fleco-library
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.manolodominguez</groupId>
<artifactId>cybertomp-fleco-library</artifactId>
<version>v1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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">
<properties>
<!--- Dependency versions -->
<treetable.version>0.0.2</treetable.version>
<miglayout-swing.version>11.3</miglayout-swing.version>
<everit-json-schema.version>1.14.4</everit-json-schema.version>
<lsf4j-api.version>2.1.0-alpha1</lsf4j-api.version>
<lsf4j-simple.version>2.1.0-alpha1</lsf4j-simple.version>
<unirest-java-core.version>4.2.7</unirest-java-core.version>
<!--- Dependency for testing -->
<!-- Maven plugins versions -->
<maven.compiler.plugin.version>3.8.1</maven.compiler.plugin.version>
<maven.enforcer.plugin.version>3.0.0-M3</maven.enforcer.plugin.version>
<maven.jar.plugin.version>3.2.0</maven.jar.plugin.version>
<maven.javadoc.plugin.version>3.1.1</maven.javadoc.plugin.version>
<maven.shade.plugin.version>3.2.1</maven.shade.plugin.version>
<maven.surefire.plugin.version>3.0.0-M4</maven.surefire.plugin.version>
<maven.source.plugin.version>3.2.1</maven.source.plugin.version>
<jacoco.maven.plugin.version>0.8.7</jacoco.maven.plugin.version>
<openlrae.maven.plugin>3.1</openlrae.maven.plugin>
<!--- Required by Sonarcloud -->
<sonar.organization>cybertomp-framework</sonar.organization>
<sonar.projectKey>cybertomp-fleco-library</sonar.projectKey>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
<!--- Build parameters -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.release>9</maven.compiler.release>
<!-- About this version of FLECO (used for properties filtering) -->
<fleco.version>v1</fleco.version>
<fleco.license>LGPL-3.0-or-later</fleco.license>
</properties>
<modelVersion>4.0.0</modelVersion>
<groupId>com.manolodominguez</groupId>
<artifactId>cybertomp-fleco-library</artifactId>
<version>v1</version>
<packaging>jar</packaging>
<name>CyberTOMP(R) FLECO Library</name>
<description>CyberTOMP(R) FLECO Library is a powerful genetic algorithm tailored for cybersecurity optimization. Its advanced algorithm allows for rapid identification of high-quality solutions to achieve the defined strategic cybersecurity goals. With FLECO, organizations can easily identify the specific set of cybersecurity measures required to meet their strategic cybersecurity goals and effectively protect their digital assets.</description>
<url>https://www.manolodominguez.com/</url>
<licenses>
<license>
<name>${fleco.license}</name>
<url>https://www.gnu.org/licenses/lgpl-3.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>Manuel Domínguez Dorado</name>
<email>ingeniero@ManoloDominguez.com</email>
<organization>Manuel Domínguez Dorado</organization>
<organizationUrl>https://manolodominguez.com</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/manolodd/fleco.git</connection>
<developerConnection>scm:git:ssh://github.com:manolodd/fleco.git</developerConnection>
<url>http://github.com/manolodd/fleco/tree/master</url>
</scm>
<build>
<finalName>cybertomp-fleco-library-${project.version}</finalName>
<plugins>
<plugin>
<groupId>com.manolodominguez</groupId>
<artifactId>openlrae-maven-plugin</artifactId>
<version>${openlrae.maven.plugin}</version>
<executions>
<execution>
<goals>
<goal>analyse</goal>
</goals>
</execution>
</executions>
<configuration>
<riskThresholds>
<HAVING_COMPONENTS_LICENSES_INCOMPATIBLE_WITH_PROJECT_LICENSES>0.0</HAVING_COMPONENTS_LICENSES_INCOMPATIBLE_WITH_PROJECT_LICENSES>
</riskThresholds>
<showReport>true</showReport>
</configuration>
</plugin>
<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>
<execution>
<id>report</id>
<phase>prepare-package</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${maven.source.plugin.version}</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>${maven.jar.plugin.version}</version>
<configuration>
<excludes>
<exclude>**/*.jpg</exclude>
<exclude>**/*.xcf</exclude>
</excludes>
<archive>
<manifest>
<mainClass>com.manolodominguez.fleco.main.FLECOStudio</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>${maven.shade.plugin.version}</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>com.manolodominguez.fleco.main.FLECOStudio</mainClass>
</transformer>
</transformers>
<shadedArtifactAttached>true</shadedArtifactAttached>
<shadedClassifierName>with-dependencies</shadedClassifierName>
<filters>
<filter>
<excludes>
<exclude>*.jpg</exclude>
<exclude>*.xce</exclude>
</excludes>
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.compiler.plugin.version}</version>
<configuration>
<compilerArgs>
<arg>-Xlint:all,-options,-path</arg>
</compilerArgs>
<showDeprecation>true</showDeprecation>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven.javadoc.plugin.version}</version>
<configuration>
<detectJavaApiLink>false</detectJavaApiLink>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>${maven.enforcer.plugin.version}</version>
<executions>
<execution>
<id>enforce-maven</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>3.3.9</version>
</requireMavenVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven.surefire.plugin.version}</version>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
<dependencies>
<dependency>
<groupId>com.konghq</groupId>
<artifactId>unirest-java-core</artifactId>
<version>${unirest-java-core.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${lsf4j-api.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${lsf4j-simple.version}</version>
</dependency>
<dependency>
<groupId>com.miglayout</groupId>
<artifactId>miglayout-swing</artifactId>
<version>${miglayout-swing.version}</version>
</dependency>
<dependency>
<groupId>com.github.erosb</groupId>
<artifactId>everit-json-schema</artifactId>
<version>${everit-json-schema.version}</version>
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<configLocation>config/sun_checks.xml</configLocation>
</configuration>
</plugin>
</plugins>
</reporting>
</project>