astra-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.astralanguage</groupId> <artifactId>astra-maven-plugin</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-maven-plugin</artifactId> <version>2.0.1</version> <packaging>maven-plugin</packaging> <name>${project.groupId}:${project.artifactId}</name> <description>This plugin can be used to support building of ASTRA applications.</description> <url>http://www.astralanguage.com/</url> <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-maven-plugin.git</connection> <developerConnection>scm:git:git@gitlab.com:astra-language/astra-maven-plugin.git</developerConnection> <url>https://gitlab.com/astra-language/astra-maven-plugin</url> </scm> <properties> <maven.compiler.target>1.8</maven.compiler.target> <maven.compiler.source>1.8</maven.compiler.source> </properties> <parent> <groupId>com.astralanguage</groupId> <artifactId>astra-core</artifactId> <version>2.0.1</version> </parent> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>3.9.9</version> <scope>provided</scope> <!-- <version>3.5.2</version> --> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>3.15.0</version> <!-- <version>3.5.2</version> --> <scope>provided</scope> </dependency> </dependencies> </project>