MVN

com.github.alexp11223 : minic

Maven & Gradle

Sep 11, 2017
9 stars

Mini-C compiler · A simple compiler for a C-like programming language to JVM bytecode implemented in Kotlin. Created for educational purposes and for usage in another educational app (visualization/simulation of compilation process).

<dependency>
    <groupId>com.github.alexp11223</groupId>
    <artifactId>minic</artifactId>
    <version>1.3.2</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.github.alexp11223 : minic to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.3.2

All Versions

Choose a version of com.github.alexp11223 : minic to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.3.x
minic-1.3.2
minic-1.3.1
minic-1.3.0
1.2.x
minic-1.2.0
1.1.x
minic-1.1.1
minic-1.1.0
1.0.x
minic-1.0.1
1.0
minic-1.0

How to add a dependency to Maven

Add the following com.github.alexp11223 : minic maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.github.alexp11223</groupId>
    <artifactId>minic</artifactId>
    <version>1.3.2</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.github.alexp11223 : minic gradle dependency to your build.gradle file:

implementation 'com.github.alexp11223:minic:1.3.2'

Gradle Kotlin DSL: Add the following com.github.alexp11223 : minic gradle kotlin dependency to your build.gradle.kts file:

implementation("com.github.alexp11223:minic:1.3.2")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.github.alexp11223 : minic sbt scala dependency to your build.sbt file:

libraryDependencies += "com.github.alexp11223" % "minic" % "1.3.2"