Author: tcurdt Date: Mon Jun 11 05:23:17 2007 New Revision: 546121 URL: http://svn.apache.org/viewvc?view=rev&rev=546121 Log: sort of working assembly construction
Added: jakarta/commons/proper/jci/trunk/assembly/ jakarta/commons/proper/jci/trunk/assembly/pom.xml (with props) jakarta/commons/proper/jci/trunk/assembly/src/ jakarta/commons/proper/jci/trunk/assembly/src/assembly/ jakarta/commons/proper/jci/trunk/assembly/src/assembly/bin.xml (with props) jakarta/commons/proper/jci/trunk/assembly/src/assembly/src.xml (with props) Removed: jakarta/commons/proper/jci/trunk/src/assembly/ Modified: jakarta/commons/proper/jci/trunk/compilers/eclipse/pom.xml jakarta/commons/proper/jci/trunk/compilers/groovy/pom.xml jakarta/commons/proper/jci/trunk/compilers/janino/pom.xml jakarta/commons/proper/jci/trunk/compilers/javac/pom.xml jakarta/commons/proper/jci/trunk/compilers/rhino/pom.xml jakarta/commons/proper/jci/trunk/core/pom.xml jakarta/commons/proper/jci/trunk/examples/pom.xml jakarta/commons/proper/jci/trunk/pom.xml Added: jakarta/commons/proper/jci/trunk/assembly/pom.xml URL: http://svn.apache.org/viewvc/jakarta/commons/proper/jci/trunk/assembly/pom.xml?view=auto&rev=546121 ============================================================================== --- jakarta/commons/proper/jci/trunk/assembly/pom.xml (added) +++ jakarta/commons/proper/jci/trunk/assembly/pom.xml Mon Jun 11 05:23:17 2007 @@ -0,0 +1,72 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +--><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> + <parent> + <groupId>org.apache.commons</groupId> + <artifactId>commons-jci</artifactId> + <version>1.0-SNAPSHOT</version> + </parent> + <packaging>pom</packaging> + <artifactId>commons-jci-assemblies</artifactId> + <version>1.0-SNAPSHOT</version> + <name>assemblies</name> + <description> + Commons JCI assemblies. + </description> + <reporting> + <excludeDefaults>true</excludeDefaults> + </reporting> + <dependencies> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-jci-core</artifactId> + <version>1.0-SNAPSHOT</version> + </dependency> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-jci-eclipse</artifactId> + <version>1.0-SNAPSHOT</version> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <artifactId>maven-assembly-plugin</artifactId> + <configuration> + <finalName>commons-jci-${project.version}</finalName> + <descriptors> + <descriptor>src/assembly/bin.xml</descriptor> + <descriptor>src/assembly/src.xml</descriptor> + </descriptors> + <tarLongFileMode>gnu</tarLongFileMode> + </configuration> + <executions> + <execution> + <phase>package</phase> + <goals> + <goal>attached</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> +</project> Propchange: jakarta/commons/proper/jci/trunk/assembly/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: jakarta/commons/proper/jci/trunk/assembly/pom.xml ------------------------------------------------------------------------------ svn:keywords = Date Revision Author HeadURL Id Propchange: jakarta/commons/proper/jci/trunk/assembly/pom.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Added: jakarta/commons/proper/jci/trunk/assembly/src/assembly/bin.xml URL: http://svn.apache.org/viewvc/jakarta/commons/proper/jci/trunk/assembly/src/assembly/bin.xml?view=auto&rev=546121 ============================================================================== --- jakarta/commons/proper/jci/trunk/assembly/src/assembly/bin.xml (added) +++ jakarta/commons/proper/jci/trunk/assembly/src/assembly/bin.xml Mon Jun 11 05:23:17 2007 @@ -0,0 +1,108 @@ +<!-- + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<assembly> + <id>bin</id> + <formats> + <format>tar.gz</format> + <format>zip</format> + </formats> + <baseDirectory>commons-jci-${project.version}-bin</baseDirectory> + <includeSiteDirectory>false</includeSiteDirectory> + +<!-- + <moduleSets> + <moduleSet> + <includes> + <include>org.apache.commons:commons-jci-core</include> + </includes> + <binaries> + <outputDirectory>lib/${artifactId}</outputDirectory> + <unpack>false</unpack> + </binaries> + </moduleSet> + </moduleSets> +--> + <fileSets> + <fileSet> + <includes> + <include>../LICENSE.txt</include> + <include>../NOTICE.txt</include> + <include>../README.txt</include> + </includes> + </fileSet> + <fileSet> + <directory>../target/site/apidocs</directory> + <outputDirectory>apidocs</outputDirectory> + </fileSet> + <fileSet> + <outputDirectory>lib</outputDirectory> + <directory>../core/target</directory> + <includes> + <include>*.jar</include> + </includes> + </fileSet> + <fileSet> + <outputDirectory>lib</outputDirectory> + <directory>../fam/target</directory> + <includes> + <include>*.jar</include> + </includes> + </fileSet> + <fileSet> + <outputDirectory>lib</outputDirectory> + <directory>../compilers/eclipse/target</directory> + <includes> + <include>*.jar</include> + </includes> + </fileSet> + <fileSet> + <outputDirectory>lib</outputDirectory> + <directory>../compilers/groovy/target</directory> + <includes> + <include>*.jar</include> + </includes> + </fileSet> + <fileSet> + <outputDirectory>lib</outputDirectory> + <directory>../compilers/janino/target</directory> + <includes> + <include>*.jar</include> + </includes> + </fileSet> + <fileSet> + <outputDirectory>lib</outputDirectory> + <directory>../compilers/javac/target</directory> + <includes> + <include>*.jar</include> + </includes> + </fileSet> + <fileSet> + <outputDirectory>lib</outputDirectory> + <directory>../compilers/rhino/target</directory> + <includes> + <include>*.jar</include> + </includes> + </fileSet> + <fileSet> + <outputDirectory>lib</outputDirectory> + <directory>../examples/target</directory> + <includes> + <include>*.jar</include> + </includes> + </fileSet> + </fileSets> +</assembly> Propchange: jakarta/commons/proper/jci/trunk/assembly/src/assembly/bin.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: jakarta/commons/proper/jci/trunk/assembly/src/assembly/bin.xml ------------------------------------------------------------------------------ svn:keywords = Date Revision Author HeadURL Id Propchange: jakarta/commons/proper/jci/trunk/assembly/src/assembly/bin.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Added: jakarta/commons/proper/jci/trunk/assembly/src/assembly/src.xml URL: http://svn.apache.org/viewvc/jakarta/commons/proper/jci/trunk/assembly/src/assembly/src.xml?view=auto&rev=546121 ============================================================================== --- jakarta/commons/proper/jci/trunk/assembly/src/assembly/src.xml (added) +++ jakarta/commons/proper/jci/trunk/assembly/src/assembly/src.xml Mon Jun 11 05:23:17 2007 @@ -0,0 +1,69 @@ +<!-- + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<assembly> + <id>src</id> + <formats> + <format>tar.gz</format> + <format>zip</format> + </formats> + <baseDirectory>commons-jci-${project.version}-src</baseDirectory> + <fileSets> + <fileSet> + <includes> + <include>../LICENSE.txt</include> + <include>../NOTICE.txt</include> + <include>../README.txt</include> + <include>../pom.xml</include> + <include>../core/pom.xml</include> + <include>../fam/pom.xml</include> + <include>../compilers/eclipse/pom.xml</include> + <include>../compilers/groovy/pom.xml</include> + <include>../compilers/janino/pom.xml</include> + <include>../compilers/javac/pom.xml</include> + <include>../compilers/rhino/pom.xml</include> + <include>../exmaples/pom.xml</include> + </includes> + </fileSet> + <fileSet> + <directory>../src</directory> + </fileSet> + <fileSet> + <directory>../core/src</directory> + </fileSet> + <fileSet> + <directory>../fam/src</directory> + </fileSet> + <fileSet> + <directory>../compilers/eclipse/src</directory> + </fileSet> + <fileSet> + <directory>../compilers/groovy/src</directory> + </fileSet> + <fileSet> + <directory>../compilers/janino/src</directory> + </fileSet> + <fileSet> + <directory>../compilers/javac/src</directory> + </fileSet> + <fileSet> + <directory>../compilers/rhino/src</directory> + </fileSet> + <fileSet> + <directory>../examples/src</directory> + </fileSet> + </fileSets> +</assembly> Propchange: jakarta/commons/proper/jci/trunk/assembly/src/assembly/src.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: jakarta/commons/proper/jci/trunk/assembly/src/assembly/src.xml ------------------------------------------------------------------------------ svn:keywords = Date Revision Author HeadURL Id Propchange: jakarta/commons/proper/jci/trunk/assembly/src/assembly/src.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Modified: jakarta/commons/proper/jci/trunk/compilers/eclipse/pom.xml URL: http://svn.apache.org/viewvc/jakarta/commons/proper/jci/trunk/compilers/eclipse/pom.xml?view=diff&rev=546121&r1=546120&r2=546121 ============================================================================== --- jakarta/commons/proper/jci/trunk/compilers/eclipse/pom.xml (original) +++ jakarta/commons/proper/jci/trunk/compilers/eclipse/pom.xml Mon Jun 11 05:23:17 2007 @@ -34,7 +34,7 @@ <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-jci-core</artifactId> - <version>1.0</version> + <version>1.0-SNAPSHOT</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> Modified: jakarta/commons/proper/jci/trunk/compilers/groovy/pom.xml URL: http://svn.apache.org/viewvc/jakarta/commons/proper/jci/trunk/compilers/groovy/pom.xml?view=diff&rev=546121&r1=546120&r2=546121 ============================================================================== --- jakarta/commons/proper/jci/trunk/compilers/groovy/pom.xml (original) +++ jakarta/commons/proper/jci/trunk/compilers/groovy/pom.xml Mon Jun 11 05:23:17 2007 @@ -34,7 +34,7 @@ <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-jci-core</artifactId> - <version>1.0</version> + <version>1.0-SNAPSHOT</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> Modified: jakarta/commons/proper/jci/trunk/compilers/janino/pom.xml URL: http://svn.apache.org/viewvc/jakarta/commons/proper/jci/trunk/compilers/janino/pom.xml?view=diff&rev=546121&r1=546120&r2=546121 ============================================================================== --- jakarta/commons/proper/jci/trunk/compilers/janino/pom.xml (original) +++ jakarta/commons/proper/jci/trunk/compilers/janino/pom.xml Mon Jun 11 05:23:17 2007 @@ -34,7 +34,7 @@ <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-jci-core</artifactId> - <version>1.0</version> + <version>1.0-SNAPSHOT</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> Modified: jakarta/commons/proper/jci/trunk/compilers/javac/pom.xml URL: http://svn.apache.org/viewvc/jakarta/commons/proper/jci/trunk/compilers/javac/pom.xml?view=diff&rev=546121&r1=546120&r2=546121 ============================================================================== --- jakarta/commons/proper/jci/trunk/compilers/javac/pom.xml (original) +++ jakarta/commons/proper/jci/trunk/compilers/javac/pom.xml Mon Jun 11 05:23:17 2007 @@ -34,7 +34,7 @@ <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-jci-core</artifactId> - <version>1.0</version> + <version>1.0-SNAPSHOT</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> Modified: jakarta/commons/proper/jci/trunk/compilers/rhino/pom.xml URL: http://svn.apache.org/viewvc/jakarta/commons/proper/jci/trunk/compilers/rhino/pom.xml?view=diff&rev=546121&r1=546120&r2=546121 ============================================================================== --- jakarta/commons/proper/jci/trunk/compilers/rhino/pom.xml (original) +++ jakarta/commons/proper/jci/trunk/compilers/rhino/pom.xml Mon Jun 11 05:23:17 2007 @@ -34,7 +34,7 @@ <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-jci-core</artifactId> - <version>1.0</version> + <version>1.0-SNAPSHOT</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> Modified: jakarta/commons/proper/jci/trunk/core/pom.xml URL: http://svn.apache.org/viewvc/jakarta/commons/proper/jci/trunk/core/pom.xml?view=diff&rev=546121&r1=546120&r2=546121 ============================================================================== --- jakarta/commons/proper/jci/trunk/core/pom.xml (original) +++ jakarta/commons/proper/jci/trunk/core/pom.xml Mon Jun 11 05:23:17 2007 @@ -40,7 +40,7 @@ <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-jci-fam</artifactId> - <version>1.0</version> + <version>1.0-SNAPSHOT</version> </dependency> <dependency> <groupId>commons-io</groupId> Modified: jakarta/commons/proper/jci/trunk/examples/pom.xml URL: http://svn.apache.org/viewvc/jakarta/commons/proper/jci/trunk/examples/pom.xml?view=diff&rev=546121&r1=546120&r2=546121 ============================================================================== --- jakarta/commons/proper/jci/trunk/examples/pom.xml (original) +++ jakarta/commons/proper/jci/trunk/examples/pom.xml Mon Jun 11 05:23:17 2007 @@ -37,12 +37,12 @@ <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-jci-core</artifactId> - <version>1.0</version> + <version>1.0-SNAPSHOT</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-jci-eclipse</artifactId> - <version>1.0</version> + <version>1.0-SNAPSHOT</version> </dependency> <dependency> <groupId>commons-cli</groupId> Modified: jakarta/commons/proper/jci/trunk/pom.xml URL: http://svn.apache.org/viewvc/jakarta/commons/proper/jci/trunk/pom.xml?view=diff&rev=546121&r1=546120&r2=546121 ============================================================================== --- jakarta/commons/proper/jci/trunk/pom.xml (original) +++ jakarta/commons/proper/jci/trunk/pom.xml Mon Jun 11 05:23:17 2007 @@ -47,6 +47,7 @@ <module>compilers/javac</module> <module>compilers/rhino</module> <module>examples</module> + <module>assembly</module> </modules> <distributionManagement> <site> @@ -111,24 +112,6 @@ </goals> </execution> </executions> - </plugin> - <plugin> - <artifactId>maven-assembly-plugin</artifactId> - <configuration> - <descriptors> - <descriptor>src/assembly/bin.xml</descriptor> - <descriptor>src/assembly/src.xml</descriptor> - </descriptors> - <tarLongFileMode>gnu</tarLongFileMode> - </configuration> - <executions> - <execution> - <phase>package</phase> - <goals> - <goal>attached</goal> - </goals> - </execution> - </executions> </plugin> </plugins> <extensions> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]