superml-java-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.superml</groupId> <artifactId>superml-java-parent</artifactId> <version>2.1.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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> <groupId>org.superml</groupId> <artifactId>superml-java-parent</artifactId> <version>2.1.0</version> <packaging>pom</packaging> <name>SuperML Java Framework - Parent</name> <description>A modular machine learning framework for Java inspired by scikit-learn</description> <url>https://github.com/supermlorg/superml-java</url> <!-- Sub-modules --> <modules> <module>superml-core</module> <module>superml-linear-models</module> <module>superml-tree-models</module> <module>superml-clustering</module> <module>superml-preprocessing</module> <module>superml-model-selection</module> <module>superml-pipeline</module> <module>superml-inference</module> <module>superml-persistence</module> <module>superml-datasets</module> <module>superml-metrics</module> <module>superml-utils</module> <module>superml-kaggle</module> <module>superml-autotrainer</module> <module>superml-onnx</module> <module>superml-pmml</module> <module>superml-drift</module> <module>superml-visualization</module> <module>superml-neural</module> <module>superml-bundle-all</module> <module>superml-examples</module> </modules> <licenses> <license> <name>Apache 2.0 License</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> <distribution>repo</distribution> <comments>See LICENSE file in the root directory</comments> </license> </licenses> <developers> <developer> <id>crazyaiml</id> <name>SuperML Team</name> <email>me@superml.dev</email> </developer> </developers> <scm> <connection>scm:git:git://github.com/supermlorg/superml-java.git</connection> <developerConnection>scm:git:ssh://github.com:supermlorg/superml-java.git</developerConnection> <url>https://github.com/supermlorg/superml-java/tree/master</url> </scm> <!-- Distribution management for Maven Central via Central Publishing Portal --> <distributionManagement> <repository> <id>central</id> <url>https://central.sonatype.com/api/v1/publisher/deployments/upload/</url> </repository> </distributionManagement> <properties> <maven.compiler.source>11</maven.compiler.source> <maven.compiler.target>11</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <junit.version>5.11.3</junit.version> <commons.math.version>3.6.1</commons.math.version> <commons.csv.version>1.12.0</commons.csv.version> <jackson.version>2.18.1</jackson.version> <httpclient.version>5.4.1</httpclient.version> <commons.io.version>2.18.0</commons.io.version> <commons.compress.version>1.27.1</commons.compress.version> <logback.version>1.5.12</logback.version> <slf4j.version>2.0.16</slf4j.version> </properties> <!-- Dependency Management for all modules --> <dependencyManagement> <dependencies> <!-- Testing --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <!-- Math utilities --> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-math3</artifactId> <version>${commons.math.version}</version> </dependency> <!-- CSV handling --> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-csv</artifactId> <version>${commons.csv.version}</version> </dependency> <!-- JSON handling --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${jackson.version}</version> </dependency> <!-- HTTP Client for Kaggle API --> <dependency> <groupId>org.apache.httpcomponents.client5</groupId> <artifactId>httpclient5</artifactId> <version>${httpclient.version}</version> </dependency> <!-- Commons IO for file operations --> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>${commons.io.version}</version> </dependency> <!-- Commons Compress for ZIP handling --> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> <version>${commons.compress.version}</version> </dependency> <!-- Logback for structured logging --> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>${logback.version}</version> </dependency> <!-- SLF4J API for logging --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> </dependencies> </dependencyManagement> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.13.0</version> <configuration> <release>11</release> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.5.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>3.5.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.11.1</version> <configuration> <doclint>none</doclint> </configuration> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.8.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <autoPublish>true</autoPublish> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> </plugin> </plugins> </build> <profiles> <!-- Profile for Maven Central releases --> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.8</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> </plugin> </plugins> </build> </profile> </profiles> </project>