cycle-mutation-experiments
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.cicirello</groupId> <artifactId>cycle-mutation-experiments</artifactId> <version>1.0.0</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.cicirello</groupId> <artifactId>cycle-mutation-experiments</artifactId> <name>Experiments with the new cycle mutation operator</name> <version>1.0.0</version> <description>This package contains Java programs for reproducing the experiments, and analysis of experimental data, from the following article: Vincent A. Cicirello. 2022. Cycle Mutation: Evolving Permutations via Cycle Induction. Applied Sciences, 12, 11, Article 5506 (June 2022). https://doi.org/10.3390/app12115506. Also available at: https://www.cicirello.org/publications/applsci-12-05506.pdf</description> <url>https://github.com/cicirello/cycle-mutation-experiments</url> <issueManagement> <system>github</system> <url>https://github.com/cicirello/cycle-mutation-experiments/issues</url> </issueManagement> <developers> <developer> <name>Vincent A Cicirello</name> <email>development@cicirello.org</email> <url>https://www.cicirello.org/</url> <organization>Cicirello.Org</organization> <organizationUrl>https://www.cicirello.org/</organizationUrl> </developer> </developers> <licenses> <license> <name>GPL-3.0-or-later</name> <url>https://www.gnu.org/licenses/gpl-3.0.en.html</url> <distribution>repo</distribution> <comments>Experiments with the new cycle mutation operator. Copyright (C) 2022 Vincent A. Cicirello. 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/.</comments> </license> </licenses> <scm> <connection>scm:git:git://github.com/cicirello/cycle-mutation-experiments.git</connection> <developerConnection>scm:git:ssh://github.com:cicirello/cycle-mutation-experiments.git</developerConnection> <url>http://github.com/cicirello/cycle-mutation-experiments/tree/main</url> </scm> <organization> <name>Cicirello.Org</name> <url>https://www.cicirello.org/</url> </organization> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.10.1</version> <configuration> <release>11</release> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.4.0</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <windowtitle>Experiments with the new cycle mutation operator</windowtitle> <doctitle>Experiments with the new cycle mutation operator</doctitle> <author>true</author> <version>false</version> <notimestamp>true</notimestamp> <bottom>Copyright &copy; 2022 <a href=\"https://www.cicirello.org/\" target=_top>Vincent A. Cicirello</a>. All rights reserved.</bottom> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M6</version> <configuration> <includes> <include>**/*TestCases.java</include> <include>**/*Tests.java</include> <include>**/*TestCase.java</include> <include>**/*Test.java</include> <include>**/Test*.java</include> </includes> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.3.0</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> <configuration> <shadedArtifactAttached>true</shadedArtifactAttached> <shadedClassifierName>jar-with-dependencies</shadedClassifierName> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>module-info.class</exclude> </excludes> </filter> <filter> <artifact>org.cicirello:core</artifact> <excludes> <exclude>META-INF/MANIFEST.MF</exclude> </excludes> </filter> <filter> <artifact>org.cicirello:rho-mu</artifact> <excludes> <exclude>META-INF/MANIFEST.MF</exclude> </excludes> </filter> <filter> <artifact>org.cicirello:jpt</artifact> <excludes> <exclude>META-INF/MANIFEST.MF</exclude> </excludes> </filter> <filter> <artifact>org.cicirello:chips-n-salsa</artifact> <excludes> <exclude>META-INF/MANIFEST.MF</exclude> </excludes> </filter> </filters> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>ossrhDeploy</id> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <executions> <execution> <id>injected-nexus-deploy</id> <phase>deploy</phase> <goals> <goal>deploy</goal> </goals> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </execution> </executions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> </plugins> </build> <distributionManagement> <repository> <id>ossrh</id> <name>Central Repository OSSRH</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>ossrh</id> <name>Central Repository OSSRH</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> </profile> <profile> <id>githubDeploy</id> <distributionManagement> <repository> <id>github</id> <name>GitHub cicirello Apache Maven Packages</name> <url>https://maven.pkg.github.com/cicirello/cycle-mutation-experiments</url> </repository> </distributionManagement> </profile> <profile> <id>coverage</id> <build> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.8</version> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>generate-code-coverage-report</id> <phase>test</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> <optional>true</optional> </dependency> </dependencies> <properties> <maven.compiler.release>11</maven.compiler.release> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> </project>