Author: gadams Date: Sun Dec 27 19:29:54 2015 New Revision: 1721835 URL: http://svn.apache.org/viewvc?rev=1721835&view=rev Log: Populate batik-codec sources.
Added: xmlgraphics/batik/branches/maven/batik-codec/ xmlgraphics/batik/branches/maven/batik-codec/pom.xml xmlgraphics/batik/branches/maven/batik-codec/src/ xmlgraphics/batik/branches/maven/batik-codec/src/main/ xmlgraphics/batik/branches/maven/batik-codec/src/main/java/ xmlgraphics/batik/branches/maven/batik-codec/src/main/java/org/ xmlgraphics/batik/branches/maven/batik-codec/src/main/java/org/apache/ xmlgraphics/batik/branches/maven/batik-codec/src/main/java/org/apache/batik/ xmlgraphics/batik/branches/maven/batik-codec/src/main/java/org/apache/batik/ext/ - copied from r1721824, xmlgraphics/batik/branches/maven/src/main/java/org/apache/batik/ext/ xmlgraphics/batik/branches/maven/batik-codec/src/main/resources/ xmlgraphics/batik/branches/maven/batik-codec/src/main/resources/org/ xmlgraphics/batik/branches/maven/batik-codec/src/main/resources/org/apache/ xmlgraphics/batik/branches/maven/batik-codec/src/main/resources/org/apache/batik/ xmlgraphics/batik/branches/maven/batik-codec/src/main/resources/org/apache/batik/ext/ - copied from r1721824, xmlgraphics/batik/branches/maven/resources/org/apache/batik/ext/ xmlgraphics/batik/branches/maven/batik-codec/src/test/ xmlgraphics/batik/branches/maven/batik-codec/src/test/java/ xmlgraphics/batik/branches/maven/batik-codec/src/test/resources/ xmlgraphics/batik/branches/maven/batik-extension/ xmlgraphics/batik/branches/maven/batik-extension/pom.xml xmlgraphics/batik/branches/maven/batik-extension/src/ xmlgraphics/batik/branches/maven/batik-extension/src/main/ xmlgraphics/batik/branches/maven/batik-extension/src/main/java/ xmlgraphics/batik/branches/maven/batik-extension/src/main/java/org/ xmlgraphics/batik/branches/maven/batik-extension/src/main/java/org/apache/ xmlgraphics/batik/branches/maven/batik-extension/src/main/java/org/apache/batik/ xmlgraphics/batik/branches/maven/batik-extension/src/main/java/org/apache/batik/extension/ - copied from r1721824, xmlgraphics/batik/branches/maven/src/main/java/org/apache/batik/extension/ xmlgraphics/batik/branches/maven/batik-extension/src/main/resources/ xmlgraphics/batik/branches/maven/batik-extension/src/main/resources/org/ xmlgraphics/batik/branches/maven/batik-extension/src/main/resources/org/apache/ xmlgraphics/batik/branches/maven/batik-extension/src/main/resources/org/apache/batik/ xmlgraphics/batik/branches/maven/batik-extension/src/main/resources/org/apache/batik/extension/ - copied from r1721824, xmlgraphics/batik/branches/maven/resources/org/apache/batik/extensions/ xmlgraphics/batik/branches/maven/batik-extension/src/test/ xmlgraphics/batik/branches/maven/batik-extension/src/test/java/ xmlgraphics/batik/branches/maven/batik-extension/src/test/resources/ xmlgraphics/batik/branches/maven/batik-parser/src/main/java/org/apache/batik/parser/style/ - copied from r1721824, xmlgraphics/batik/branches/maven/resources/org/apache/batik/parser/style/ xmlgraphics/batik/branches/maven/batik-util/src/main/java/org/apache/batik/util/package.html - copied unchanged from r1721824, xmlgraphics/batik/branches/maven/src/main/java/org/apache/batik/util/package.html Removed: xmlgraphics/batik/branches/maven/resources/org/apache/batik/ext/ xmlgraphics/batik/branches/maven/resources/org/apache/batik/extensions/ xmlgraphics/batik/branches/maven/resources/org/apache/batik/parser/ xmlgraphics/batik/branches/maven/resources/org/apache/batik/util/ xmlgraphics/batik/branches/maven/src/main/java/org/apache/batik/ext/ xmlgraphics/batik/branches/maven/src/main/java/org/apache/batik/extension/ xmlgraphics/batik/branches/maven/src/main/java/org/apache/batik/util/ Modified: xmlgraphics/batik/branches/maven/batik-script/pom.xml xmlgraphics/batik/branches/maven/pom.xml Added: xmlgraphics/batik/branches/maven/batik-codec/pom.xml URL: http://svn.apache.org/viewvc/xmlgraphics/batik/branches/maven/batik-codec/pom.xml?rev=1721835&view=auto ============================================================================== --- xmlgraphics/batik/branches/maven/batik-codec/pom.xml (added) +++ xmlgraphics/batik/branches/maven/batik-codec/pom.xml Sun Dec 27 19:29:54 2015 @@ -0,0 +1,74 @@ +<?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> + + <artifactId>batik-codec</artifactId> + <name>${project.groupId}:${project.artifactId}</name> + <description>Batik image codecs</description> + + <parent> + <groupId>org.apache.xmlgraphics</groupId> + <artifactId>batik</artifactId> + <version>1.9.0-SNAPSHOT</version> + </parent> + + <dependencies> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>batik-awt-util</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>batik-bridge</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>batik-transcoder</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>batik-util</artifactId> + <version>${project.version}</version> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <artifactId>maven-compiler-plugin</artifactId> + <version>${compiler.version}</version> + <configuration> + <excludes> + <exclude>**/codec/tiff/*</exclude> + </excludes> + </configuration> + </plugin> + </plugins> + </build> + +</project> Added: xmlgraphics/batik/branches/maven/batik-extension/pom.xml URL: http://svn.apache.org/viewvc/xmlgraphics/batik/branches/maven/batik-extension/pom.xml?rev=1721835&view=auto ============================================================================== --- xmlgraphics/batik/branches/maven/batik-extension/pom.xml (added) +++ xmlgraphics/batik/branches/maven/batik-extension/pom.xml Sun Dec 27 19:29:54 2015 @@ -0,0 +1,136 @@ +<?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.xmlgraphics</groupId> + <artifactId>batik-extension</artifactId> + <version>@version@</version> + <packaging>jar</packaging> + <name>Batik extension classes</name> + <url>http://xmlgraphics.apache.org/batik/</url> + <inceptionYear>2000</inceptionYear> + + <mailingLists> + <mailingList> + <name>Batik Users List</name> + <subscribe>batik-users-subscr...@xmlgraphics.apache.org</subscribe> + <unsubscribe>batik-users-unsubscr...@xmlgraphics.apache.org</unsubscribe> + <archive>http://mail-archives.apache.org/mod_mbox/xmlgraphics-batik-users/</archive> + </mailingList> + <mailingList> + <name>Batik Developer List</name> + <subscribe>batik-dev-subscr...@xmlgraphics.apache.org</subscribe> + <unsubscribe>batik-dev-unsubscr...@xmlgraphics.apache.org</unsubscribe> + <archive>http://mail-archives.apache.org/mod_mbox/xmlgraphics-batik-dev/</archive> + </mailingList> + <mailingList> + <name>Batik Commit List</name> + <subscribe>batik-commits-subscr...@xmlgraphics.apache.org</subscribe> + <unsubscribe>batik-commits-unsubscr...@xmlgraphics.apache.org</unsubscribe> + <archive>http://mail-archives.apache.org/mod_mbox/xmlgraphics-batik-commits/</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> + + <scm> + <connection>scm:svn:http://svn.apache.org/repos/asf/xmlgraphics/batik/trunk</connection> + <developerConnection>scm:svn:https://svn.apache.org/repos/asf/xmlgraphics/batik/trunk</developerConnection> + <url>http://svn.apache.org/viewvc/xmlgraphics/batik/trunk/?root=Apache-SVN</url> + </scm> + + <organization> + <name>Apache Software Foundation</name> + <url>http://www.apache.org/</url> + </organization> + + <dependencies> + <dependency> + <groupId>org.apache.xmlgraphics</groupId> + <artifactId>batik-anim</artifactId> + <version>@version@</version> + </dependency> + <dependency> + <groupId>org.apache.xmlgraphics</groupId> + <artifactId>batik-awt-util</artifactId> + <version>@version@</version> + </dependency> + <dependency> + <groupId>org.apache.xmlgraphics</groupId> + <artifactId>batik-bridge</artifactId> + <version>@version@</version> + </dependency> + <dependency> + <groupId>org.apache.xmlgraphics</groupId> + <artifactId>batik-css</artifactId> + <version>@version@</version> + </dependency> + <dependency> + <groupId>org.apache.xmlgraphics</groupId> + <artifactId>batik-dom</artifactId> + <version>@version@</version> + </dependency> + <dependency> + <groupId>org.apache.xmlgraphics</groupId> + <artifactId>batik-ext</artifactId> + <version>@version@</version> + </dependency> + <dependency> + <groupId>org.apache.xmlgraphics</groupId> + <artifactId>batik-gvt</artifactId> + <version>@version@</version> + </dependency> + <dependency> + <groupId>org.apache.xmlgraphics</groupId> + <artifactId>batik-parser</artifactId> + <version>@version@</version> + </dependency> + <dependency> + <groupId>org.apache.xmlgraphics</groupId> + <artifactId>batik-svg-dom</artifactId> + <version>@version@</version> + </dependency> + <dependency> + <groupId>org.apache.xmlgraphics</groupId> + <artifactId>batik-util</artifactId> + <version>@version@</version> + </dependency> + <dependency> + <groupId>xml-apis</groupId> + <artifactId>xml-apis</artifactId> + <version>1.3.04</version> + </dependency> + <dependency> + <groupId>xml-apis</groupId> + <artifactId>xml-apis-ext</artifactId> + <version>1.3.04</version> + </dependency> + </dependencies> +</project> Modified: xmlgraphics/batik/branches/maven/batik-script/pom.xml URL: http://svn.apache.org/viewvc/xmlgraphics/batik/branches/maven/batik-script/pom.xml?rev=1721835&r1=1721834&r2=1721835&view=diff ============================================================================== --- xmlgraphics/batik/branches/maven/batik-script/pom.xml (original) +++ xmlgraphics/batik/branches/maven/batik-script/pom.xml Sun Dec 27 19:29:54 2015 @@ -34,20 +34,6 @@ <version>1.9.0-SNAPSHOT</version> </parent> - <build> - <plugins> - <plugin> - <artifactId>maven-compiler-plugin</artifactId> - <version>${compiler.version}</version> - <configuration> - <excludes> - <exclude>**/jacl/*</exclude> - </excludes> - </configuration> - </plugin> - </plugins> - </build> - <dependencies> <dependency> <groupId>${project.groupId}</groupId> @@ -71,4 +57,18 @@ </dependency> </dependencies> + <build> + <plugins> + <plugin> + <artifactId>maven-compiler-plugin</artifactId> + <version>${compiler.version}</version> + <configuration> + <excludes> + <exclude>**/jacl/*</exclude> + </excludes> + </configuration> + </plugin> + </plugins> + </build> + </project> Modified: xmlgraphics/batik/branches/maven/pom.xml URL: http://svn.apache.org/viewvc/xmlgraphics/batik/branches/maven/pom.xml?rev=1721835&r1=1721834&r2=1721835&view=diff ============================================================================== --- xmlgraphics/batik/branches/maven/pom.xml (original) +++ xmlgraphics/batik/branches/maven/pom.xml Sun Dec 27 19:29:54 2015 @@ -81,6 +81,7 @@ <module>batik-anim</module> <module>batik-awt-util</module> <module>batik-bridge</module> + <module>batik-codec</module> <module>batik-css</module> <module>batik-dom</module> <module>batik-ext</module>