astra-cartago
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.astralanguage</groupId> <artifactId>astra-cartago</artifactId> <version>2.0.1</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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.astralanguage</groupId> <artifactId>astra-cartago</artifactId> <name>${project.groupId}:${project.artifactId}</name> <description>Base project for ASTRA applications</description> <url>https://astralanguage.com</url> <version>2.0.1</version> <packaging>jar</packaging> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <developers> <developer> <name>Rem Collier</name> <email>rem.collier@ucd.ie</email> <organization>University College Dublin</organization> <organizationUrl>http://www.ucd.ie</organizationUrl> </developer> </developers> <scm> <!-- Should be format scm:git:git or scm:git:https --> <connection>scm:git:https://gitlab.com/astra-language/astra-core.git</connection> <developerConnection>scm:git:git@gitlab.com:astra-language/astra-core.git</developerConnection> <url>https://gitlab.com/astra-language/astra-core/-/tree/master/astra-cartago</url> </scm> <parent> <groupId>com.astralanguage</groupId> <artifactId>astra-core</artifactId> <version>2.0.1</version> </parent> <properties> <maven.compiler.target>1.8</maven.compiler.target> <maven.compiler.source>1.8</maven.compiler.source> <jackson.version>2.17.2</jackson.version> <!-- <jackson.version>2.14.0</jackson.version> --> </properties> <repositories> <repository> <id>gitlab-maven</id> <url>https://gitlab.com/api/v4/projects/51927826/packages/maven</url> </repository> </repositories> <dependencies> <dependency> <groupId>com.astralanguage</groupId> <artifactId>cartago</artifactId> <version>1.0</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>${jackson.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> <version>${jackson.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${jackson.version}</version> </dependency> <dependency> <groupId>com.astralanguage</groupId> <artifactId>astra-interpreter</artifactId> <version>2.0.1</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resource-plugin</artifactId> <version>3.2.0</version> </plugin> </plugins> </build> </project>