4 Star 4 Fork 0

Apache/commons-imaging

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 15.85 KB
一键复制 编辑 原始数据 按行查看 历史
Gary D. Gregory 提交于 2025-05-01 02:19 +08:00 . Better description
<?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 https://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.commons</groupId>
<artifactId>commons-parent</artifactId>
<version>83</version>
</parent>
<artifactId>commons-imaging</artifactId>
<name>Apache Commons Imaging</name>
<version>1.0.0-alpha7-SNAPSHOT</version>
<!--
Keep the description on a single line. Otherwise Maven might generate
a corrupted MANIFEST.MF (see https://issues.apache.org/jira/browse/MJAR-4)
-->
<description>Apache Commons Imaging (previously Sanselan) is a pure Java image library.</description>
<url>https://commons.apache.org/proper/commons-imaging/</url>
<properties>
<!-- ****************************************** -->
<!-- WHILE IN ALPHA MODE ONLY, REMOVE FOR 1.0.0 -->
<!-- ****************************************** -->
<commons.japicmp.breakBuildOnBinaryIncompatibleModifications>false</commons.japicmp.breakBuildOnBinaryIncompatibleModifications>
<!-- *********************************************************************************************************************** -->
<argLine>-Xmx512m</argLine>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<commons.componentid>imaging</commons.componentid>
<commons.module.name>org.apache.commons.imaging</commons.module.name>
<commons.jira.id>IMAGING</commons.jira.id>
<commons.jira.pid>12313421</commons.jira.pid>
<commons.osgi.export>org.apache.commons.imaging.*;version=${project.version};-noimport:=true</commons.osgi.export>
<commons.site.path>imaging</commons.site.path>
<!-- TODO: remove when we upgrade it to commons-parent 53 due to https://issues.apache.org/jira/browse/MNG-7316 -->
<commons.release-plugin.version>1.8.0</commons.release-plugin.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<commons.conf.dir>src/conf</commons.conf.dir>
<!-- Commons Release Plugin -->
<commons.release.version>1.0.0-alpha7</commons.release.version>
<commons.release.next>1.0.0-alpha8</commons.release.next>
<commons.bc.version>1.0.0-alpha6</commons.bc.version>
<commons.rc.version>RC1</commons.rc.version>
<commons.release.isDistModule>true</commons.release.isDistModule>
<commons.distSvnStagingUrl>scm:svn:https://dist.apache.org/repos/dist/dev/commons/imaging</commons.distSvnStagingUrl>
<!-- project.build.outputTimestamp is managed by Maven plugins, see https://maven.apache.org/guides/mini/guide-reproducible-builds.html -->
<project.build.outputTimestamp>2025-04-30T17:58:25Z</project.build.outputTimestamp>
<!-- JaCoCo: Don't make code coverage worse than: -->
<commons.jacoco.haltOnFailure>true</commons.jacoco.haltOnFailure>
<commons.jacoco.classRatio>0.96</commons.jacoco.classRatio>
<commons.jacoco.instructionRatio>0.77</commons.jacoco.instructionRatio>
<commons.jacoco.methodRatio>0.80</commons.jacoco.methodRatio>
<commons.jacoco.branchRatio>0.64</commons.jacoco.branchRatio>
<commons.jacoco.lineRatio>0.77</commons.jacoco.lineRatio>
<commons.jacoco.complexityRatio>0.60</commons.jacoco.complexityRatio>
</properties>
<scm>
<connection>scm:git:http://gitbox.apache.org/repos/asf/commons-imaging.git</connection>
<developerConnection>scm:git:https://gitbox.apache.org/repos/asf/commons-imaging.git</developerConnection>
<url>https://gitbox.apache.org/repos/asf?p=commons-imaging.git</url>
<tag>HEAD</tag>
</scm>
<distributionManagement>
<site>
<id>apache.website</id>
<name>Apache Commons Site</name>
<url>scm:svn:https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-imaging/</url>
</site>
</distributionManagement>
<issueManagement>
<system>jira</system>
<url>https://issues.apache.org/jira/browse/IMAGING</url>
</issueManagement>
<inceptionYear>2007</inceptionYear>
<build>
<defaultGoal>clean verify apache-rat:check checkstyle:check spotbugs:check pmd:check javadoc:javadoc</defaultGoal>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/assembly/bin.xml</descriptor>
<descriptor>src/assembly/src.xml</descriptor>
</descriptors>
<tarLongFileMode>gnu</tarLongFileMode>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>animal-sniffer-maven-plugin</artifactId>
<version>1.24</version>
<configuration>
<signature>
<groupId>org.codehaus.mojo.signature</groupId>
<artifactId>java18</artifactId>
<version>1.0</version>
</signature>
</configuration>
<executions>
<execution>
<id>check-java-api</id>
<phase>test</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
<configuration>
<archive combine.children="append">
<manifestEntries>
<Automatic-Module-Name>${commons.module.name}</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
</plugin>
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<configLocation>${basedir}/src/conf/checkstyle.xml</configLocation>
<!-- <suppressionsLocation>${basedir}/src/conf/checkstyle-suppressions.xml</suppressionsLocation> -->
<suppressionsLocation>checkstyle-suppressions.xml</suppressionsLocation>
<includeTestSourceDirectory>true</includeTestSourceDirectory>
<enableRulesSummary>false</enableRulesSummary>
<excludes>target/**</excludes>
</configuration>
</plugin>
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<configuration>
<excludeFilterFile>${commons.conf.dir}/spotbugs-exclude-filter.xml</excludeFilterFile>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
<configuration>
<excludes>
<exclude>src/test/resources/images/**/*</exclude>
<exclude>src/test/resources/IMAGING-*/*</exclude>
<exclude>src/test/**/*.xpm</exclude>
<exclude>src/test/**/*.pam</exclude>
<exclude>src/test/**/*.pbm</exclude>
<exclude>src/test/**/*.pgm</exclude>
<exclude>src/test/**/*.ppm</exclude>
<exclude>src/test/**/*.xbm</exclude>
<exclude>src/test/**/*.bmp</exclude>
<exclude>src/test/**/*.tga</exclude>
<exclude>src/test/**/*.hdr</exclude>
<exclude>src/main/resources/org/apache/commons/imaging/formats/xpm/rgb.txt</exclude>
<exclude>.asf.yaml</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<configuration>
<targetJdk>${maven.compiler.target}</targetJdk>
<rulesets>
<ruleset>${commons.conf.dir}/pmd-ruleset.xml</ruleset>
</rulesets>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.19.0</version>
</dependency>
<dependency>
<groupId>org.openjdk.jol</groupId>
<artifactId>jol-core</artifactId>
<version>0.17</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.17.0</version>
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<artifactId>maven-checkstyle-plugin</artifactId>
<reportSets>
<reportSet>
<reports>
<report>checkstyle</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<!-- Requires setting 'export MAVEN_OPTS="-Xmx512m -XX:MaxPermSize=128m" ' -->
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changes-plugin</artifactId>
<version>${commons.changes.version}</version>
<configuration>
<issueLinkTemplate>%URL%/%ISSUE%</issueLinkTemplate>
</configuration>
<reportSets>
<reportSet>
<reports>
<report>changes-report</report>
<report>jira-report</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>taglist-maven-plugin</artifactId>
<configuration>
<tagListOptions>
<tagClasses>
<tagClass>
<displayName>Needs Work</displayName>
<tags>
<tag>
<matchString>TODO</matchString>
<matchType>exact</matchType>
</tag>
<tag>
<matchString>FIXME</matchString>
<matchType>exact</matchType>
</tag>
<tag>
<matchString>XXX</matchString>
<matchType>exact</matchType>
</tag>
</tags>
</tagClass>
<tagClass>
<displayName>Noteable Markers</displayName>
<tags>
<tag>
<matchString>NOTE</matchString>
<matchType>exact</matchType>
</tag>
<tag>
<matchString>NOPMD</matchString>
<matchType>exact</matchType>
</tag>
<tag>
<matchString>NOSONAR</matchString>
<matchType>exact</matchType>
</tag>
</tags>
</tagClass>
</tagClasses>
</tagListOptions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
<configuration>
<excludes>
<exclude>src/test/resources/images/**/*</exclude>
<exclude>src/test/resources/IMAGING-*/*</exclude>
<exclude>src/test/data/**/*.xpm</exclude>
<exclude>src/test/data/**/*.pam</exclude>
<exclude>src/test/data/**/*.pbm</exclude>
<exclude>src/test/data/**/*.pgm</exclude>
<exclude>src/test/data/**/*.ppm</exclude>
<exclude>src/test/data/**/*.xbm</exclude>
<exclude>src/test/data/**/*.bmp</exclude>
<exclude>src/test/data/**/*.tga</exclude>
<exclude>src/test/data/**/*.hdr</exclude>
<exclude>src/main/resources/org/apache/commons/imaging/formats/xpm/rgb.txt</exclude>
<exclude>.asf.yaml</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</reporting>
<developers>
<developer>
<name>Charles M. Chen</name>
<id>cmchen</id>
</developer>
<developer>
<name>Philipp Koch</name>
<id>pkoch</id>
</developer>
<developer>
<name>Jeremias Maerki</name>
<id>jeremias</id>
</developer>
<developer>
<name>Craig Russell</name>
<id>clr</id>
</developer>
<developer>
<name>Yoav Shapira</name>
<id>yoavs</id>
</developer>
<developer>
<name>Carsten Ziegeler</name>
<id>cziegeler</id>
</developer>
<developer>
<name>Damjan Jovanovic</name>
<id>damjan</id>
</developer>
<developer>
<name>Matt Benson</name>
<id>mbenson</id>
</developer>
<developer>
<id>ggregory</id>
<name>Gary Gregory</name>
<email>ggregory at apache.org</email>
<url>https://www.garygregory.com</url>
<organization>The Apache Software Foundation</organization>
<organizationUrl>https://www.apache.org/</organizationUrl>
<roles>
<role>PMC Member</role>
</roles>
<timezone>America/New_York</timezone>
<properties>
<picUrl>https://people.apache.org/~ggregory/img/garydgregory80.png</picUrl>
</properties>
</developer>
</developers>
<contributors>
<contributor>
<name>Adrian Moerchen</name>
</contributor>
<contributor>
<name>Alex Vigdor</name>
</contributor>
<contributor>
<name>Craig Kelly</name>
</contributor>
<contributor>
<name>Gary Lucas</name>
</contributor>
<contributor>
<name>Gavin Shiels</name>
</contributor>
<contributor>
<name>Peter Royal</name>
</contributor>
<contributor>
<name>Piyush Kapoor</name>
</contributor>
<contributor>
<name>Tars Joris</name>
</contributor>
<contributor>
<name>VVD</name>
</contributor>
<contributor>
<name>Wanja Gayk</name>
</contributor>
<contributor>
<name>Arturo Bernal</name>
</contributor>
</contributors>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/apache/commons-imaging.git
git@gitee.com:apache/commons-imaging.git
apache
commons-imaging
commons-imaging
master

搜索帮助