You can download InMemoryJavaCompiler-1.2.jar in this page.
Apache License, Version 2.0
InMemoryJavaCompiler-1.2.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/org.mdkt.compiler/InMemoryJavaCompiler/pom.properties META-INF/maven/org.mdkt.compiler/InMemoryJavaCompiler/pom.xml org.mdkt.compiler.CompiledCode.class org.mdkt.compiler.DynamicClassLoader.class org.mdkt.compiler.ExtendedStandardJavaFileManager.class org.mdkt.compiler.InMemoryJavaCompiler.class org.mdkt.compiler.SourceCode.class
InMemoryJavaCompiler-1.2.pom file content.
<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>org.mdkt.compiler</groupId> <artifactId>InMemoryJavaCompiler</artifactId> <version>1.2</version> <packaging>jar</packaging> <url>https://github.com/trung/InMemoryJavaCompiler</url> <name>InMemoryJavaCompiler</name> <description>Small utility to compile java code in memory</description> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven-compiler-plugin.version>3.2</maven-compiler-plugin.version> <nexus-staging-maven-plugin.version>1.6.3</nexus-staging-maven-plugin.version> <maven-release-plugin.version>2.5.1</maven-release-plugin.version> <gpg.executable>gpg2</gpg.executable> </properties> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <issueManagement> <url>https://github.com/trung/InMemoryJavaCompiler/issues</url> <system>GitHub Issues</system> </issueManagement> <scm> <url>https://github.com/trung/InMemoryJavaCompiler</url> <connection>scm:git:git://github.com/trung/InMemoryJavaCompiler</connection> <developerConnection>scm:git:git@github.com:trung/InMemoryJavaCompiler.git</developerConnection> <tag>InMemoryJavaCompiler-1.2</tag> </scm> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <developers> <developer> <name>Trung Nguyen</name> <email>trung.n.k@gmail.com</email> <organization>Github</organization> <organizationUrl>https://github.com/trung</organizationUrl> </developer> </developers> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${nexus-staging-maven-plugin.version}</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-release-plugin</artifactId> <version>${maven-release-plugin.version}</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>
<dependency> <groupId>org.mdkt.compiler</groupId> <artifactId>InMemoryJavaCompiler</artifactId> <version>1.2</version> </dependency>
If you think the following InMemoryJavaCompiler-1.2.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download InMemoryJavaCompiler-1.2.jar file