aeatk
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.uvic-cfar.swim.ubc.cs.beta</groupId> <artifactId>aeatk</artifactId> <version>2.10.4</version> </dependency>
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.uvic-cfar.swim.ubc.cs.beta</groupId> <artifactId>aeatk</artifactId> <version>2.10.4</version> <name>AEATK</name> <description>Algorithm Execution and Abstraction Toolkit</description> <url>https://github.com/SJrX/AEATK</url> <licenses> <license> <name>GNU Affero General Public License, Version 3</name> <url>https://www.gnu.org/licenses/agpl-3.0.en.html</url> </license> </licenses> <organization> <name>University of British Columbia, Department of Computer Science, Algorithms Lab</name> <url>https://www.cs.ubc.ca/labs/beta/</url> </organization> <scm> <url>https://github.com/SJrX/AEATK</url> <connection>scm:git:git://github.com/SJrX/AEATK.git</connection> <developerConnection>scm:git:git://github.com/SJrX/AEATK.git</developerConnection> </scm> <issueManagement> <url>https://github.com/SJrX/AEATK</url> <system>GitHub</system> </issueManagement> <developers> <developer> <organization>University of British Columbia, Department of Computer Science, Algorithms Lab</organization> <url>https://www.cs.ubc.ca/labs/beta/</url> </developer> </developers> <contributors> <contributor> <name>Stephan Heinemann</name> <email>stephan.cfar@gmail.com</email> <organization>UVic Center for Aerospace Research</organization> <organizationUrl>https://cfar.engr.uvic.ca/</organizationUrl> <roles> <role>Maven Project Maintainer</role> </roles> </contributor> </contributors> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <profiles> <profile> <id>ossrh</id> <distributionManagement> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> </profile> </profiles> <repositories> <repository> <id>doodleproject-repo</id> <name>DoodleProject Maven 2 Repository</name> <url>http://doodleproject.sourceforge.net/maven2/release</url> </repository> <repository> <id>repo2_maven_org</id> <url>http://repo2.maven.org/maven2</url> </repository> </repositories> <build> <resources> <resource> <directory>src/main/resources</directory> </resource> <resource> <directory>src/test/resources</directory> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>3.2.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> <version>3.1.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <compilerVersion>11</compilerVersion> <source>11</source> <target>11</target> <release>11</release> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M5</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <configuration> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> </manifest> <manifestEntries> <Built-By /> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.2.0</version> <configuration> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> </manifest> <manifestEntries> <Built-By /> </manifestEntries> </archive> <additionalparam>-Xdoclint:none</additionalparam> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>5.1.1</version> <extensions>true</extensions> </plugin> <plugin> <groupId>external.atlassian.jgitflow</groupId> <artifactId>jgitflow-maven-plugin</artifactId> <version>1.0-m5.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.9.1</version> <dependencies> <dependency> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-ssh</artifactId> <version>3.4.2</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>3.1.1</version> </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> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>javax.activation</groupId> <artifactId>activation</artifactId> <version>1.1.1</version> </dependency> <dependency> <groupId>com.github.braisdom</groupId> <artifactId>mangosdk-spi</artifactId> <version>1.1.1</version> </dependency> <dependency> <groupId>net.objecthunter</groupId> <artifactId>exp4j</artifactId> <version>0.4.8</version> </dependency> <dependency> <groupId>de.congrace</groupId> <artifactId>exp4j</artifactId> <version>0.3.11</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.9</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>2.9.9</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.9.9.3</version> </dependency> <dependency> <groupId>com.io7m.jcip</groupId> <artifactId>com.io7m.jcip.annotations</artifactId> <version>2.0.0</version> </dependency> <dependency> <groupId>com.beust</groupId> <artifactId>jcommander</artifactId> <version>1.27</version> </dependency> <dependency> <groupId>au.com.bytecode</groupId> <artifactId>opencsv</artifactId> <version>2.4</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-math</artifactId> <version>2.2</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-math3</artifactId> <version>3.6.1</version> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.2.6</version> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>31.0.1-jre</version> <type>bundle</type> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-collections4</artifactId> <version>4.4</version> </dependency> <dependency> <groupId>net.sf.doodleproject</groupId> <artifactId>numerics4j</artifactId> <version>1.3</version> </dependency> <dependency> <groupId>gov.nist.math</groupId> <artifactId>jama</artifactId> <version>1.0.3</version> </dependency> <dependency> <groupId>com.uvic-cfar.swim.ubc.cs.beta.models</groupId> <artifactId>fastrf</artifactId> <version>1.10.1</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> <scope>test</scope> </dependency> </dependencies> </project>