it.compile.pom.xml Maven / Gradle / Ivy
<?xml version="1.0" encoding="UTF-8"?> <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.cloudhoist.plugin.test</groupId> <artifactId>clojurescript-compiler-test</artifactId> <version>0.1.1-SNAPSHOT</version> <packaging>jar</packaging> <build> <sourceDirectory>src/main/clojurescript</sourceDirectory> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <executions> <execution> <phase>compile</phase> <id>default-compile</id> <configuration> <compilerId>clojurescript</compilerId> </configuration> <goals> <goal>compile</goal> </goals> </execution> </executions> <dependencies> <dependency> <groupId>org.cloudhoist</groupId> <artifactId>clojurescript-maven-plexus-compiler</artifactId> <version>0.2.1-SNAPSHOT</version> </dependency> </dependencies> </plugin> </plugins> </build> <dependencies> </dependencies> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> </project>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy