astra-compiler
Used in: 
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
    <groupId>com.astralanguage</groupId>
    <artifactId>astra-compiler</artifactId>
    <version>2.0.7</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-compiler</artifactId>
	<name>${project.groupId}:${project.artifactId}</name>
	<description>Core compiler artifact for the ASTRA Language</description>
	<url>https://astralanguage.com</url>
	<version>2.0.7</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-compiler</url>-->	
    </scm>
	<parent>
		<groupId>com.astralanguage</groupId>
		<artifactId>astra-core</artifactId>
		<version>2.0.7</version>
	</parent>
	<dependencies>
		<dependency>
			<groupId>com.astralanguage</groupId>
			<artifactId>astra-interpreter</artifactId>
			<version>2.0.7</version>
		</dependency>
        <!-- <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
        </dependency> -->
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-api</artifactId>
            <version>5.11.0</version>
        </dependency>
	</dependencies>
	<profiles>
		<profile>
			<id>release</id>
			<build>
				<plugins>
					<plugin>
						<groupId>org.sonatype.plugins</groupId>
						<artifactId>nexus-staging-maven-plugin</artifactId>
						<!-- <version>1.6.7</version> -->
						<version>1.7.0</version>
						<extensions>true</extensions>
						<configuration>
							<serverId>ossrh</serverId>
							<nexusUrl>https://oss.sonatype.org/</nexusUrl>
							<autoReleaseAfterClose>true</autoReleaseAfterClose>
						</configuration>
					</plugin>
					<plugin>
						<groupId>org.apache.maven.plugins</groupId>
						<artifactId>maven-gpg-plugin</artifactId>
						<version>3.2.5</version>
						<!-- <version>1.5</version> -->
						<executions>
							<execution>
								<id>sign-artifacts</id>
								<phase>verify</phase>
								<goals>
									<goal>sign</goal>
								</goals>
								<configuration>
									<gpgArguments>
										<arg>--pinentry-mode</arg>
										<arg>loopback</arg>
									</gpgArguments>
								</configuration>
							</execution>
						</executions>
					</plugin>
					<plugin>
						<groupId>org.apache.maven.plugins</groupId>
						<artifactId>maven-source-plugin</artifactId>
						<version>3.3.1</version>
						<!-- <version>3.2.0</version> -->
						<executions>
							<execution>
							<id>attach-sources</id>
							<goals>
								<goal>jar</goal>
							</goals>
							</execution>
						</executions>
					</plugin>			
					<plugin>
						<groupId>org.apache.maven.plugins</groupId>
						<artifactId>maven-javadoc-plugin</artifactId>
						<version>3.10.0</version>
						<!-- <version>3.2.0</version> -->
						<executions>
							<execution>
							<id>attach-javadocs</id>
							<goals>
								<goal>jar</goal>
							</goals>
							</execution>
						</executions>
					</plugin>
				</plugins>
			</build>
		</profile>
	</profiles>
</project>