discodnc
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.tum.ei.lkn.eces</groupId> <artifactId>discodnc</artifactId> <version>2.4.3-lkn</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"> <modelVersion>4.0.0</modelVersion> <name>Fork of DiscoDNC - The Disco Deterministic Network Calculator</name> <description>Deterministic Network Calculus (DNC) is a methodology for worst-case modeling and analysis of communication networks. It enables to derive deterministic bounds on a server’s backlog as well as a flow’s end-to-end delay. Given a directed graph of servers (server graph) and the flows crossing these servers, the Disco Deterministic Network Calculator (DiscoDNC) automates the derivation of bounds.</description> <url>discodnc.cs.uni-kl.de</url> <groupId>de.tum.ei.lkn.eces</groupId> <artifactId>discodnc</artifactId> <version>2.4.3-lkn</version> <licenses> <license> <name>GNU General Lesser Public License (LGPL) version 2.1</name> <url>https://www.gnu.org/licenses/lgpl-2.1.txt</url> </license> </licenses> <developers> <developer> <name>Steffen Bondorf</name> <email>bondorf@cs.uni-kl.de</email> <organization>Distributed Computer Systems (DISCO) Lab at TU Kaiserslautern</organization> <organizationUrl>https://disco.cs.uni-kl.de</organizationUrl> </developer> <developer> <name>Amaury Van Bemten</name> <email>amaury.van-bemten@tum.de</email> <organization>Technical University of Munich - Chair of Communication Networks</organization> <organizationUrl>https://www.ei.tum.de/en/lkn/home/</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://github.com/amovanb/eces-discodnc.git</connection> <developerConnection>scm:git:ssh://github.com/amovanb/eces-discodnc.git</developerConnection> <url>https://github.com/amovanb/eces-discodnc/tree/master</url> </scm> <properties> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.20</version> <configuration> <includes> <include>**/*Test*</include> </includes> </configuration> </plugin> <plugin> <!-- deploy to the OSSRH Nexus Repository Manager and release to the Maven Central Repository with the Nexus Staging Maven plugin --> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-math3</artifactId> <version>[3.0,3.6.1]</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>[5.2.0]</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <scope>test</scope> <version>[5.2.0]</version> </dependency> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-launcher</artifactId> <version>[1.2.0]</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-suite-api</artifactId> <version>[1.2.0]</version> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <!-- Generate Javadoc/Source jar files and sign the components with a GPG key to fulfill the requirements to push to the Central Repository. --> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.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>2.9.1</version> <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>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <!-- Prevent `gpg` from using pinentry programs --> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> </project>