Permalink
Please sign in to comment.
Browse files
Fix build of complete/standalone artifact.
Dependency on single, large JAR: groupId: org.clojure.contrib artifactId: clojure-contrib version: 1.3.0-SNAPSHOT classifier: standalone Dependency on multiple, small JARs: groupId: org.clojure.contrib artifactId: complete version: 1.3.0-SNAPSHOT
- Loading branch information...
Showing
with
38 additions
and 18 deletions.
- +1 −1 modules/complete/pom.xml
- +0 −17 modules/complete/src/main/assemblies/bin.xml
- +15 −0 pom.xml
- +22 −0 src/main/assembly/standalone.xml
@@ -1,17 +0,0 @@ | ||
-<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0" | ||
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
- xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd"> | ||
- <id>bin</id> | ||
- <formats> | ||
- <format>jar</format> | ||
- </formats> | ||
- <includeBaseDirectory>false</includeBaseDirectory> | ||
- <dependencySets> | ||
- <dependencySet> | ||
- <unpack>true</unpack> | ||
- <excludes> | ||
- <exclude>org.clojure:clojure</exclude> | ||
- </excludes> | ||
- </dependencySet> | ||
- </dependencySets> | ||
-</assembly> |
@@ -0,0 +1,22 @@ | ||
+<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0" | ||
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
+ xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd"> | ||
+ <id>standalone</id> | ||
+ <formats> | ||
+ <format>jar</format> | ||
+ </formats> | ||
+ <includeBaseDirectory>false</includeBaseDirectory> | ||
+ <moduleSets> | ||
+ <moduleSet> | ||
+ <sources> | ||
+ <includeModuleDirectory>false</includeModuleDirectory> | ||
+ <fileSets> | ||
+ <fileSet> | ||
+ <directory>src/main/clojure</directory> | ||
+ <outputDirectory></outputDirectory> | ||
+ </fileSet> | ||
+ </fileSets> | ||
+ </sources> | ||
+ </moduleSet> | ||
+ </moduleSets> | ||
+</assembly> |
0 comments on commit
d6b88cb