diff options
author | Yegor Kozlov <yegor@apache.org> | 2008-10-26 20:08:58 +0000 |
---|---|---|
committer | Yegor Kozlov <yegor@apache.org> | 2008-10-26 20:08:58 +0000 |
commit | f929eb1f201d3c61794440927000aeea21fe6c0c (patch) | |
tree | 51ad7a84aa0e38a60d40b5e20e0c86e08191a8ab /maven | |
parent | 7c0d1fc041746fb337e683c198ed5d618481004e (diff) | |
download | poi-f929eb1f201d3c61794440927000aeea21fe6c0c.tar.gz poi-f929eb1f201d3c61794440927000aeea21fe6c0c.zip |
1. support for the ooxml maven dependencies:
added pom templates for openxml4j and ooxml-schemas, the maven-ooxml-dependencies task generates m1 distrib for both 2. excluded jar-14 and compile-14 from the main distrib cycle \n
git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@708030 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'maven')
-rwxr-xr-x | maven/ooxml-schemas.pom | 70 | ||||
-rwxr-xr-x | maven/openxml4j.pom | 70 | ||||
-rwxr-xr-x | maven/poi-ooxml.pom | 86 |
3 files changed, 226 insertions, 0 deletions
diff --git a/maven/ooxml-schemas.pom b/maven/ooxml-schemas.pom new file mode 100755 index 0000000000..da49544ae1 --- /dev/null +++ b/maven/ooxml-schemas.pom @@ -0,0 +1,70 @@ +<?xml version="1.0"?> +<!-- + + 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> + <groupId>org.apache.poi</groupId> + <artifactId>ooxml-schemas</artifactId> + <version>@VERSION@</version> + <packaging>jar</packaging> + <name>OOXML schemas</name> + <description>XmlBeans generated from the Ecma supplied xsds: + http://www.ecma-international.org/publications/files/ECMA-ST/Office%20Open%20XML%20Part%204%20(DOCX).zip</description> + <url>http://poi.apache.org/</url> + + <mailingLists> + <mailingList> + <name>POI Users List</name> + <subscribe>user-subscribe@poi.apache.org</subscribe> + <unsubscribe>user-unsubscribe@poi.apache.org</unsubscribe> + <archive>http://mail-archives.apache.org/mod_mbox/poi-user/</archive> + </mailingList> + <mailingList> + <name>POI Developer List</name> + <subscribe>dev-subscribe@poi.apache.org</subscribe> + <unsubscribe>dev-unsubscribe@poi.apache.org</unsubscribe> + <archive>http://mail-archives.apache.org/mod_mbox/poi-dev/</archive> + </mailingList> + </mailingLists> + + <licenses> + <license> + <name>The Apache Software License, Version 2.0</name> + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> + <distribution>repo</distribution> + </license> + </licenses> + + <organization> + <name>Apache Software Foundation</name> + <url>http://www.apache.org/</url> + </organization> + + <dependencies> + <dependency> + <groupId>org.apache.xmlbeans</groupId> + <artifactId>xmlbeans</artifactId> + <version>2.3.0</version> + </dependency> + </dependencies> +</project> diff --git a/maven/openxml4j.pom b/maven/openxml4j.pom new file mode 100755 index 0000000000..5379a73246 --- /dev/null +++ b/maven/openxml4j.pom @@ -0,0 +1,70 @@ +<?xml version="1.0"?> +<!-- + + 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> + <groupId>org.openxml4j</groupId> + <artifactId>openxml4j</artifactId> + <version>@VERSION@</version> + <packaging>jar</packaging> + <name>OpenXML4J</name> + <url>http://openxml4j.org/</url> + <description>Office Open XML File Format library for Java</description> + + <mailingLists> + <mailingList> + <name>OpenXML4J Users List</name> + <archive>http://sourceforge.net/mailarchive/forum.php?forum_name=openxml4j-users</archive> + </mailingList> + <mailingList> + <name>OpenXML4J Developer List</name> + <archive>http://sourceforge.net/mailarchive/forum.php?forum_name=openxml4j-devs</archive> + </mailingList> + </mailingLists> + + <licenses> + <license> + <name>The Apache Software License, Version 2.0</name> + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> + <distribution>repo</distribution> + </license> + </licenses> + + <organization> + <name>OpenXML4J</name> + <url>http://www.openxml4j.org/</url> + </organization> + + <dependencies> + <dependency> + <groupId>dom4j</groupId> + <artifactId>dom4j</artifactId> + <version>1.6.1</version> + </dependency> + <dependency> + <groupId>log4j</groupId> + <artifactId>log4j</artifactId> + <version>1.2.8</version> + </dependency> + </dependencies> +</project> diff --git a/maven/poi-ooxml.pom b/maven/poi-ooxml.pom new file mode 100755 index 0000000000..ef2ebee633 --- /dev/null +++ b/maven/poi-ooxml.pom @@ -0,0 +1,86 @@ +:tab<?xml version="1.0"?> +<!-- + + 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> + <groupId>org.apache.poi</groupId> + <artifactId>@ARTIFICAT@</artifactId> + <version>@VERSION@</version> + <packaging>jar</packaging> + <name>Apache POI</name> + <url>http://poi.apache.org/</url> + <description>Apache POI - Java API To Access Microsoft Format Files</description> + + <mailingLists> + <mailingList> + <name>OpenXML4J Users List</name> + <archive>http://sourceforge.net/mailarchive/forum.php?forum_name=openxml4j-users</archive> + </mailingList> + <mailingList> + <name>OpenXML4J Developer List</name> + <archive>http://sourceforge.net/mailarchive/forum.php?forum_name=openxml4j-devs</archive> + </mailingList> + <mailingList> + <name>POI Developer List</name> + <subscribe>dev-subscribe@poi.apache.org</subscribe> + <unsubscribe>dev-unsubscribe@poi.apache.org</unsubscribe> + <archive>http://mail-archives.apache.org/mod_mbox/poi-dev/</archive> + </mailingList> + </mailingLists> + + <licenses> + <license> + <name>The Apache Software License, Version 2.0</name> + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> + <distribution>repo</distribution> + </license> + </licenses> + + <organization> + <name>Apache Software Foundation</name> + <url>http://www.apache.org/</url> + </organization> + + <dependencies> + <dependency> + <groupId>org.apache.xmlbeans</groupId> + <artifactId>xmlbeans</artifactId> + <version>2.3.0</version> + </dependency> + <dependency> + <groupId>org.apache.poi</groupId> + <artifactId>poi</artifactId> + <version>@VERSION@</version> + </dependency> + <dependency> + <groupId>org.apache.poi</groupId> + <artifactId>openxml4j</artifactId> + <version>@VERSION@</version> + </dependency> + <dependency> + <groupId>org.apache.poi</groupId> + <artifactId>ooxml-schemas</artifactId> + <version>@VERSION@</version> + </dependency> + </dependencies> +</project> |