1 |
<!-- |
2 |
|
3 |
Licensed to the Apache Software Foundation (ASF) under one or more |
4 |
contributor license agreements. See the NOTICE file distributed with |
5 |
this work for additional information regarding copyright ownership. |
6 |
The ASF licenses this file to You under the Apache License, Version 2.0 |
7 |
(the "License"); you may not use this file except in compliance with |
8 |
the License. You may obtain a copy of the License at |
9 |
|
10 |
http://www.apache.org/licenses/LICENSE-2.0 |
11 |
|
12 |
Unless required by applicable law or agreed to in writing, software |
13 |
distributed under the License is distributed on an "AS IS" BASIS, |
14 |
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
15 |
See the License for the specific language governing permissions and |
16 |
limitations under the License. |
17 |
|
18 |
--> |
19 |
|
20 |
<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"> |
21 |
<modelVersion>4.0.0</modelVersion> |
22 |
|
23 |
<parent> |
24 |
<groupId>org.apache</groupId> |
25 |
<artifactId>apache</artifactId> |
26 |
<version>18</version> |
27 |
<relativePath/> |
28 |
</parent> |
29 |
|
30 |
<groupId>org.apache.pdfbox</groupId> |
31 |
<artifactId>jbig2-imageio</artifactId> |
32 |
<version>3.0.0-r6.3</version> |
33 |
|
34 |
<name>PDFBox JBIG2 ImageIO plugin</name> |
35 |
|
36 |
<description> |
37 |
Java Image I/O plugin for reading JBIG2-compressed image data. |
38 |
Formerly known as the levigo JBig2 ImageIO plugin (com.levigo.jbig2:levigo-jbig2-imageio). |
39 |
</description> |
40 |
|
41 |
<url>https://github.com/levigo/jbig2-imageio</url> |
42 |
|
43 |
<developers> |
44 |
<developer> |
45 |
<id>krzikams</id> |
46 |
<name>Matthäus Mayer</name> |
47 |
<email>m.mayer@levigo.de</email> |
48 |
<roles> |
49 |
<role>retired developer</role> |
50 |
</roles> |
51 |
</developer> |
52 |
<developer> |
53 |
<id>hennejg</id> |
54 |
<name>Jörg Henne</name> |
55 |
<email>j.henne@levigo.de</email> |
56 |
<roles> |
57 |
<role>project transition to ASL/ASF</role> |
58 |
</roles> |
59 |
</developer> |
60 |
</developers> |
61 |
|
62 |
<distributionManagement> |
63 |
<snapshotRepository> |
64 |
<id>sonatype-nexus-snapshots</id> |
65 |
<name>Sonatype Nexus Snapshot Repository</name> |
66 |
<url>https://oss.sonatype.org/content/repositories/snapshots/</url> |
67 |
</snapshotRepository> |
68 |
<repository> |
69 |
<id>sonatype-nexus-staging</id> |
70 |
<name>Sonatype Nexus Release Staging Repository</name> |
71 |
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
72 |
</repository> |
73 |
</distributionManagement> |
74 |
|
75 |
<scm> |
76 |
<connection>scm:git:ssh://github.com/levigo/jbig2-imageio.git</connection> |
77 |
<developerConnection>scm:git:ssh://git@github.com/levigo/jbig2-imageio.git</developerConnection> |
78 |
<url>https://github.com/levigo/jbig2-imageio</url> |
79 |
<tag>HEAD</tag> |
80 |
</scm> |
81 |
|
82 |
<dependencies> |
83 |
<dependency> |
84 |
<groupId>junit</groupId> |
85 |
<artifactId>junit</artifactId> |
86 |
<version>4.10</version> |
87 |
<scope>test</scope> |
88 |
</dependency> |
89 |
</dependencies> |
90 |
|
91 |
<build> |
92 |
<plugins> |
93 |
<plugin> |
94 |
<artifactId>maven-compiler-plugin</artifactId> |
95 |
<configuration> |
96 |
<source>1.7</source> |
97 |
<target>1.7</target> |
98 |
<debug>false</debug> |
99 |
<optimize>true</optimize> |
100 |
</configuration> |
101 |
</plugin> |
102 |
|
103 |
<plugin> |
104 |
<inherited>false</inherited> |
105 |
<groupId>com.mycila</groupId> |
106 |
<artifactId>license-maven-plugin</artifactId> |
107 |
<version>3.0</version> |
108 |
<configuration> |
109 |
<header>${basedir}/LICENSE-HEADER.txt</header> |
110 |
<failIfMissing>true</failIfMissing> |
111 |
<aggregate>true</aggregate> |
112 |
<useDefaultExcludes>false</useDefaultExcludes> |
113 |
<excludes> |
114 |
<exclude>**/.classpath</exclude> |
115 |
<exclude>**/.project</exclude> |
116 |
<exclude>**/.settings/**</exclude> |
117 |
<exclude>**/target/**</exclude> |
118 |
<exclude>**/.idea/**</exclude> |
119 |
<exclude>**/atlassian-ide-plugin.xml</exclude> |
120 |
</excludes> |
121 |
<includes> |
122 |
<include>**/*.xml</include> |
123 |
<include>**/*.md</include> |
124 |
<include>**/src/**/*.java</include> |
125 |
<include>**/src/**/*.properties</include> |
126 |
<include>**/META-INF/services/*</include> |
127 |
<include>**/*.yml</include> |
128 |
</includes> |
129 |
<headerDefinitions> |
130 |
<headerDefinition>src/build/license-maven-plugin/additionalHeaders.xml</headerDefinition> |
131 |
</headerDefinitions> |
132 |
<mapping> |
133 |
<md>MD_STYLE</md> |
134 |
<CacheBridge>SCRIPT_STYLE</CacheBridge> |
135 |
<ReaderSpi>SCRIPT_STYLE</ReaderSpi> |
136 |
<LoggerBridge>SCRIPT_STYLE</LoggerBridge> |
137 |
<TestService>SCRIPT_STYLE</TestService> |
138 |
<ImageReaderSpi>SCRIPT_STYLE</ImageReaderSpi> |
139 |
</mapping> |
140 |
</configuration> |
141 |
<executions> |
142 |
<execution> |
143 |
<id>check-headers</id> |
144 |
<phase>verify</phase> |
145 |
<goals> |
146 |
<goal>check</goal> |
147 |
</goals> |
148 |
</execution> |
149 |
</executions> |
150 |
</plugin> |
151 |
|
152 |
<plugin> |
153 |
<artifactId>maven-release-plugin</artifactId> |
154 |
<configuration> |
155 |
<autoVersionSubmodules>true</autoVersionSubmodules> |
156 |
<!-- Keep changes in the local repo, push will be done afterwards --> |
157 |
<pushChanges>false</pushChanges> |
158 |
<localCheckout>true</localCheckout> |
159 |
<!-- Use a better name for the tag --> |
160 |
<tagNameFormat>${project.artifactId}-${project.version}</tagNameFormat> |
161 |
</configuration> |
162 |
<dependencies> |
163 |
<dependency> |
164 |
<groupId>org.apache.maven.scm</groupId> |
165 |
<artifactId>maven-scm-provider-gitexe</artifactId> |
166 |
<version>1.9</version> |
167 |
</dependency> |
168 |
</dependencies> |
169 |
</plugin> |
170 |
</plugins> |
171 |
</build> |
172 |
|
173 |
<profiles> |
174 |
<profile> |
175 |
<id>release-sign-artifacts</id> |
176 |
<activation> |
177 |
<property> |
178 |
<name>performRelease</name> |
179 |
<value>true</value> |
180 |
</property> |
181 |
</activation> |
182 |
<build> |
183 |
<plugins> |
184 |
<plugin> |
185 |
<groupId>org.apache.maven.plugins</groupId> |
186 |
<artifactId>maven-gpg-plugin</artifactId> |
187 |
<version>1.1</version> |
188 |
<configuration> |
189 |
<homedir>${levigo-jbig2-imageio.gpg.homedir}</homedir> |
190 |
<keyname>${levigo-jbig2-imageio.gpg.keyname}</keyname> |
191 |
<passphrase>${levigo-jbig2-imageio.gpg.passphrase}</passphrase> |
192 |
</configuration> |
193 |
<executions> |
194 |
<execution> |
195 |
<id>sign-artifacts</id> |
196 |
<phase>verify</phase> |
197 |
<goals> |
198 |
<goal>sign</goal> |
199 |
</goals> |
200 |
</execution> |
201 |
</executions> |
202 |
</plugin> |
203 |
</plugins> |
204 |
</build> |
205 |
</profile> |
206 |
</profiles> |
207 |
|
208 |
</project> |