Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 28 additions & 6 deletions dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
<?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>com.doe</groupId>
<groupId>io.github.java-doe</groupId>
<artifactId>doe-generator</artifactId>
<name>Java Design of Experiments (DOE)</name>
<version>1.0.0</version>
<version>1.1.0</version>
<description>A comprehensive Java library for Design of Experiments (DOE) algorithms including Box-Behnken, Central Composite, Factorial, and other DOE methods.</description>
<url>https://github.com/Java-DOE/JavaDOE</url>
<url>https://java-doe.github.io/JavaDOE</url>
<developers>
<developer>
<id>noormustafa</id>
<name>Noor Mustafa</name>
<email>noor@example.com</email>
<email>mustafanoor715@gmail.com</email>
<organization>Java-DOE</organization>
<organizationUrl>https://github.com/Java-DOE</organizationUrl>
<organizationUrl>https://java-doe.github.io/JavaDOE</organizationUrl>
</developer>
</developers>
<licenses>
Expand All @@ -25,7 +25,7 @@
</licenses>
<scm>
<connection>scm:git:https://github.com/Java-DOE/JavaDOE.git</connection>
<developerConnection>scm:git:ssh://github.com:Java-DOE/JavaDOE.git</developerConnection>
<developerConnection>scm:git:ssh://git@github.com:Java-DOE/JavaDOE.git</developerConnection>
<url>https://github.com/Java-DOE/JavaDOE/tree/main</url>
</scm>
<build>
Expand Down Expand Up @@ -86,6 +86,28 @@
<failOnError>false</failOnError>
</configuration>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.9.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
</configuration>
</plugin>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
Expand Down
204 changes: 115 additions & 89 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,99 +1,99 @@
<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>
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>

<groupId>com.doe</groupId>
<artifactId>doe-generator</artifactId>
<version>1.0.0</version>
<packaging>jar</packaging>
<groupId>io.github.java-doe</groupId>
<artifactId>doe-generator</artifactId>
<version>1.1.0</version>
<packaging>jar</packaging>

<name>Java Design of Experiments (DOE)</name>
<description>A comprehensive Java library for Design of Experiments (DOE) algorithms including Box-Behnken, Central Composite, Factorial, and other DOE methods.</description>
<url>https://github.com/Java-DOE/JavaDOE</url>
<name>Java Design of Experiments (DOE)</name>
<description>A comprehensive Java library for Design of Experiments (DOE) algorithms including Box-Behnken, Central Composite, Factorial, and other DOE methods.</description>
<url>https://java-doe.github.io/JavaDOE</url>

<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>

<developers>
<developer>
<id>noormustafa</id>
<name>Noor Mustafa</name>
<email>noor@example.com</email>
<organization>Java-DOE</organization>
<organizationUrl>https://github.com/Java-DOE</organizationUrl>
</developer>
</developers>
<developers>
<developer>
<id>noormustafa</id>
<name>Noor Mustafa</name>
<email>mustafanoor715@gmail.com</email>
<organization>Java-DOE</organization>
<organizationUrl>https://java-doe.github.io/JavaDOE</organizationUrl>
</developer>
</developers>

<scm>
<connection>scm:git:https://github.com/Java-DOE/JavaDOE.git</connection>
<developerConnection>scm:git:ssh://github.com:Java-DOE/JavaDOE.git</developerConnection>
<url>https://github.com/Java-DOE/JavaDOE/tree/main</url>
</scm>
<scm>
<connection>scm:git:https://github.com/Java-DOE/JavaDOE.git</connection>
<developerConnection>scm:git:ssh://git@github.com:Java-DOE/JavaDOE.git</developerConnection>
<url>https://github.com/Java-DOE/JavaDOE/tree/main</url>
</scm>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
</properties>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
</properties>

<dependencies>
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-math3 -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math3</artifactId>
<version>3.6.1</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.25.3</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.20.0</version>
</dependency>
<!-- TESTING DEPENDENCIES -->
<!-- https://mvnrepository.com/artifact/junit/junit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/org.mockito/mockito-core -->
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>5.20.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-inline</artifactId>
<version>5.2.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>26.0.2</version>
<scope>compile</scope>
</dependency>
<dependencies>
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-math3 -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math3</artifactId>
<version>3.6.1</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.25.3</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.20.0</version>
</dependency>
<!-- TESTING DEPENDENCIES -->
<!-- https://mvnrepository.com/artifact/junit/junit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/org.mockito/mockito-core -->
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>5.20.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-inline</artifactId>
<version>5.2.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>26.0.2</version>
<scope>compile</scope>
</dependency>

<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.42</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.42</version>
<scope>compile</scope>
</dependency>

</dependencies>
</dependencies>

<build>
<plugins>
Expand Down Expand Up @@ -128,7 +128,7 @@
</execution>
</executions>
</plugin>

<!-- Plugin to generate sources JAR -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -143,7 +143,7 @@
</execution>
</executions>
</plugin>

<!-- Plugin to generate Javadoc JAR - configured to ignore errors for GitHub Packages -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -162,9 +162,35 @@
</execution>
</executions>
</plugin>
<!-- maven publish plugin -->
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.9.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
</configuration>
</plugin>

<!-- GPG signing plugin for Maven Central -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

<!-- Distribution Management for GitHub Packages -->
<distributionManagement>
<repository>
Expand Down