如何使用Clojure maven插件排除源文件?

时间:2014-03-19 14:25:35

标签: java maven clojure

我正在尝试使用Maven和clojure-maven-plugin将一些Clojure代码编译到jar中。

生成的jar包含源* .clj文件,我想从最终的jar中排除这些文件, 并仅包含 AOT编译文件

我的pom文件如下:

<?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/xsd/maven-4.0.0.xsd">

    <artifactId>clojure-interop</artifactId>
    <groupId>com.testing.clojure</groupId>
    <version>1.0.0</version>

    <modelVersion>4.0.0</modelVersion>

    <packaging>jar</packaging>

    <build>
        <plugins>
            <plugin>
                <groupId>com.theoryinpractise</groupId>
                <artifactId>clojure-maven-plugin</artifactId>
                <version>1.3.13</version>
                <extensions>true</extensions>
                <executions>
                    <execution>
                        <id>compile-clojure</id>
                        <phase>compile</phase>
                        <goals>
                            <goal>compile</goal>
                        </goals>
                    </execution>
                    <execution>
                        <id>test-clojure</id>
                        <phase>test</phase>
                        <goals>
                            <goal>test</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

    <repositories>
        <repository>
            <id>clojars</id>
            <url>http://clojars.org/repo/</url>
        </repository>
    </repositories>

    <dependencies>
        <dependency>
            <groupId>org.clojure</groupId>
            <artifactId>clojure</artifactId>
            <version>1.5.0</version>
        </dependency>
    </dependencies>

</project>

有人能指出我正确的方向吗?

1 个答案:

答案 0 :(得分:0)

可以使用copiedNamespacescopyDeclaredNamespaceOnlycopyAllCompiledNamespaces配置属性的组合来配置clojure-maven-plugin以从jar中排除某些源文件。为了从jar中排除所有源文件,请使用:

  <plugin>
    <groupId>com.theoryinpractise</groupId>
    <artifactId>clojure-maven-plugin</artifactId>
    <version>1.3.15</version>
    <extensions>true</extensions>
    <configuration>
      <copiedNamespaces>
        <copiedNamespace>!.*</copiedNamespace>
      </copiedNamespaces>
    </configuration>
   ......
  </plugin>

有更多信息,请here