editor
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.megaknytes.ftc.decisiontable</groupId> <artifactId>editor</artifactId> <version>localDev</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>org.megaknytes.ftc.decisiontable</groupId> <artifactId>editor</artifactId> <version>localDev</version> <packaging>aar</packaging> <name>Editor</name> <description>FTC Decision Table Web Editor Library</description> <url>https://github.com/MegaKnytes/DecisionTable</url> <inceptionYear>2025</inceptionYear> <licenses> <license> <name>MIT License</name> <url>https://spdx.org/licenses/MIT.html</url> </license> </licenses> <developers> <developer> <id>hccsarobotics</id> <name>MegaKnytes 11093</name> <email>hccsarobotics@gmail.com</email> </developer> </developers> <scm> <connection>scm:git:https://github.com/MegaKnytes/DecisionTable.git</connection> <developerConnection>scm:git:ssh://github.com/MegaKnytes/DecisionTable.git</developerConnection> <url>http://github.com/MegaKnytes/DecisionTable</url> </scm> <dependencies> <dependency> <groupId>org.firstinspires.ftc</groupId> <artifactId>RobotServer</artifactId> <version>10.2.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.firstinspires.ftc</groupId> <artifactId>RobotCore</artifactId> <version>10.2.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.firstinspires.ftc</groupId> <artifactId>Hardware</artifactId> <version>10.2.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.firstinspires.ftc</groupId> <artifactId>FtcCommon</artifactId> <version>10.2.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.nanohttpd</groupId> <artifactId>nanohttpd-websocket</artifactId> <version>2.3.1</version> <scope>runtime</scope> <exclusions> <exclusion> <groupId>*</groupId> <artifactId>nanohttpd</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.nanohttpd</groupId> <artifactId>nanohttpd-apache-fileupload</artifactId> <version>2.3.1</version> <scope>runtime</scope> <exclusions> <exclusion> <groupId>*</groupId> <artifactId>nanohttpd</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>4.0.1</version> <scope>runtime</scope> </dependency> </dependencies> </project>