core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>de.dlr.gitlab.fame</groupId>
<artifactId>core</artifactId>
<version>2.0.3</version>
</dependency><!-- SPDX-FileCopyrightText: 2025 German Aerospace Center <fame@dlr.de>
SPDX-License-Identifier: Apache-2.0 -->
<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>de.dlr.gitlab.fame</groupId>
<artifactId>core</artifactId>
<version>2.0.3</version>
<name>FAME-Core</name>
<description>An open framework for distributed agent-based modeling of energy systems</description>
<url>https://gitlab.com/fame-framework/fame-core</url>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>Dr. Christoph Schimeczek</name>
<email>Christoph.Schimeczek@dlr.de</email>
<organization>German Aerospace Center (DLR)</organization>
<organizationUrl>http://www.dlr.de</organizationUrl>
</developer>
<developer>
<name>Dr. Dr. Ulrich Frey</name>
<email>Ulrich.Frey@dlr.de</email>
<organization>German Aerospace Center (DLR)</organization>
<organizationUrl>http://www.dlr.de</organizationUrl>
</developer>
<developer>
<name>Dr. Marc Deissenroth</name>
<email>Marc.Deissenroth@dlr.de</email>
<organization>German Aerospace Center (DLR)</organization>
<organizationUrl>http://www.dlr.de</organizationUrl>
</developer>
<developer>
<name>Dr. Benjamin Fuchs</name>
<email>Benjamin.Fuchs@dlr.de</email>
<organization>German Aerospace Center (DLR)</organization>
<organizationUrl>http://www.dlr.de</organizationUrl>
</developer>
<developer>
<name>Dr. A. Achraf El Ghazi</name>
<email>Aboubakr.ElGhazi@dlr.de</email>
<organization>German Aerospace Center (DLR)</organization>
<organizationUrl>http://www.dlr.de</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:https://gitlab.com/fame-framework/fame-core.git</connection>
<url>https://gitlab.com/fame-framework/fame-core</url>
</scm>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<properties>
<maven.compiler.release>11</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<fame.protobuf.version>2.0.3</fame.protobuf.version>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.17.0</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.36</version>
</dependency>
<dependency>
<groupId>org.reflections</groupId>
<artifactId>reflections</artifactId>
<version>0.9.12</version>
</dependency>
<dependency>
<groupId>info.picocli</groupId>
<artifactId>picocli</artifactId>
<version>4.7.6</version>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>2.3</version>
</dependency>
<dependency>
<groupId>de.dlr.gitlab.fame</groupId>
<artifactId>protobuf</artifactId>
<version>${fame.protobuf.version}</version>
</dependency>
<dependency>
<groupId>de.dlr.gitlab.fame</groupId>
<artifactId>mpi-api</artifactId>
<version>1.0.2</version>
</dependency>
<dependency>
<groupId>de.dlr.gitlab.fame</groupId>
<artifactId>mpi-singlecore-impl</artifactId>
<version>1.0.2</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>5.14.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.github.hakky54</groupId>
<artifactId>logcaptor</artifactId>
<version>2.6.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/resources-filtered</directory>
<filtering>true</filtering>
</resource>
<resource>
<directory>target/generated-resources</directory>
</resource>
</resources>
<plugins>
<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-source-plugin</artifactId>
<version>3.3.1</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-javadoc-plugin</artifactId>
<version>3.11.1</version>
<configuration>
<outputDirectory>${project.build.directory}/site</outputDirectory>
</configuration>
<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.7</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>deploy</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.7.0</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.12</version>
<executions>
<execution>
<id>pre-unit-test</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>post-unit-test</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
<configuration>
<excludes>
<exclude>de/dlr/gitlab/fame/service/scheduling/stats/NoRuntimeTracking.class</exclude>
<exclude>de/dlr/gitlab/fame/setup/Setup.class</exclude>
<exclude>de/dlr/gitlab/fame/setup/Constants.class</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>2.5.0</version>
<executions>
<execution>
<id>download-licenses</id>
<goals>
<goal>download-licenses</goal>
</goals>
<configuration>
<excludedScopes>test</excludedScopes>
<licensesOutputDirectory>${project.build.directory}/generated-resources/licenses</licensesOutputDirectory>
<licensesOutputFile>${project.build.directory}/generated-resources/licenses.xml</licensesOutputFile>
<cleanLicensesOutputDirectory>true</cleanLicensesOutputDirectory>
<includeTransitiveDependencies>true</includeTransitiveDependencies>
</configuration>
<phase>generate-resources</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>4.9.1.0</version>
<configuration>
<failOnError>true</failOnError>
<excludeFilterFile>${project.basedir}/src/test/resources/spotbugs-ignore.xml</excludeFilterFile>
</configuration>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>spotbugs</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>only-eclipse</id>
<activation>
<property>
<name>m2e.version</name>
</property>
</activation>
<build>
<pluginManagement>
<plugins>
<!-- Configure the Eclipse m2e plugin to support needed plugins! Warning about missing plugins can be ignored -->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<versionRange>[2.5.1,)</versionRange>
<goals>
<goal>install-file</goal>
</goals>
</pluginExecutionFilter>
<action><execute /></action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</profile>
</profiles>
</project>