You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pdfbox.apache.org by le...@apache.org on 2017/10/16 20:30:56 UTC

[3/3] pdfbox-jbig2 git commit: updated .gitignore

updated .gitignore


Project: http://git-wip-us.apache.org/repos/asf/pdfbox-jbig2/repo
Commit: http://git-wip-us.apache.org/repos/asf/pdfbox-jbig2/commit/6a4e06fa
Tree: http://git-wip-us.apache.org/repos/asf/pdfbox-jbig2/tree/6a4e06fa
Diff: http://git-wip-us.apache.org/repos/asf/pdfbox-jbig2/diff/6a4e06fa

Branch: refs/heads/master
Commit: 6a4e06faef032097f8f24e74539fc402ca5abb6d
Parents: a25ed66
Author: Andreas Lehmkühler <an...@lehmi.de>
Authored: Mon Oct 16 22:27:37 2017 +0200
Committer: Andreas Lehmkühler <an...@lehmi.de>
Committed: Mon Oct 16 22:27:37 2017 +0200

----------------------------------------------------------------------
 .gitignore |   3 +
 pom.xml    | 372 ++++++++++++++++++++++++++++----------------------------
 2 files changed, 189 insertions(+), 186 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/pdfbox-jbig2/blob/6a4e06fa/.gitignore
----------------------------------------------------------------------
diff --git a/.gitignore b/.gitignore
index 7652970..79c51d9 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,7 @@
 .idea/
+.settings/
+.project
+.classpath
 atlassian-ide-plugin.xml
 levigo-jbig2-imageio.iml
 target/

http://git-wip-us.apache.org/repos/asf/pdfbox-jbig2/blob/6a4e06fa/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index d8ada43..af1aa05 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,187 +1,187 @@
-<!--
-
-    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</groupId>
-        <artifactId>apache</artifactId>
-        <version>18</version>
-        <relativePath/>
-    </parent>
-    
-	<groupId>org.apache.pdfbox</groupId>
-	<artifactId>jbig2-imageio</artifactId>
-	<version>3.0.0-SNAPSHOT</version>
-	
-	<name>PDFBox JBIG2 ImageIO plugin</name>
-	
-	<description>
-		Java Image I/O plugin for reading JBIG2-compressed image data. 
-		Formerly known as the levigo JBig2 ImageIO plugin (com.levigo.jbig2:levigo-jbig2-imageio).
-	</description>
-	
-    <organization>
-        <name>The Apache Software Foundation</name>
-        <url>http://pdfbox.apache.org</url>
-    </organization>
-  
-
-    <issueManagement>
-        <system>jira</system>
-        <url>https://issues.apache.org/jira/browse/PDFBOX</url>
-    </issueManagement>
-
-	<developers>
-		<developer>
-			<id>krzikams</id>
-			<name>Matthäus Mayer</name>
-			<email>m.mayer@levigo.de</email>
-			<roles>
-				<role>retired developer</role>
-			</roles>
-		</developer>
-		<developer>
-			<id>hennejg</id>
-			<name>Jörg Henne</name>
-			<email>j.henne@levigo.de</email>
-			<roles>
-				<role>project transition to ASL/ASF</role>
-			</roles>
-		</developer>
-	</developers>
-
-    <scm>
-      <connection>scm:git:http://git-wip-us.apache.org/repos/asf/pdfbox-jbig2.git</connection>
-      <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/pdfbox-jbig2.git</developerConnection>
-      <url>https://git-wip-us.apache.org/repos/asf?p=pdfbox-jbig2.git</url>
-    </scm>
-	
-	<dependencies>
-		<dependency>
-			<groupId>junit</groupId>
-			<artifactId>junit</artifactId>
-			<version>4.10</version>
-			<scope>test</scope>
-		</dependency>
-	</dependencies>
-
-	<build>
-		<plugins>
-			<plugin>
-				<artifactId>maven-compiler-plugin</artifactId>
-				<configuration>
-					<source>1.7</source>
-					<target>1.7</target>
-					<debug>false</debug>
-					<optimize>true</optimize>
-				</configuration>
-			</plugin>
-            <plugin>
-		      <artifactId>maven-release-plugin</artifactId>
-		      <configuration>
-		          <autoVersionSubmodules>true</autoVersionSubmodules>
-		          <!-- Keep changes in the local repo, push will be done afterwards -->
-		          <pushChanges>false</pushChanges>
-		          <localCheckout>true</localCheckout>
-		          <!-- Use a better name for the tag -->
-		          <tagNameFormat>${project.artifactId}-${project.version}</tagNameFormat>
-		      </configuration>
-		      <dependencies>
-		          <dependency>
-		            <groupId>org.apache.maven.scm</groupId>
-		            <artifactId>maven-scm-provider-gitexe</artifactId>
-		            <version>1.9</version>
-		          </dependency>
-		      </dependencies>
-		    </plugin>
-		</plugins>
-	</build>
-
-	<profiles>
-        <profile>
-            <id>pedantic</id>
-            <build>
-                <plugins>
-                    <plugin>
-                        <groupId>org.apache.rat</groupId>
-                        <artifactId>apache-rat-plugin</artifactId>
-                        <executions>
-                            <execution>
-                                <phase>verify</phase>
-                                <goals>
-                                    <goal>check</goal>
-                                </goals>
-                            </execution>
-                        </executions>
-                    </plugin>
-                    <plugin>
-                        <groupId>org.owasp</groupId>
-                        <artifactId>dependency-check-maven</artifactId>
-                        <version>2.1.0</version>
-                        <configuration>
-                            <failBuildOnAnyVulnerability>true</failBuildOnAnyVulnerability>
-                        </configuration>
-                        <executions>
-                            <execution>
-                                <goals>
-                                    <goal>check</goal>
-                                </goals>
-                            </execution>
-                        </executions>
-                    </plugin>
-                </plugins>
-            </build>
-        </profile>
-		<profile>
-			<id>release-sign-artifacts</id>
-			<activation>
-				<property>
-					<name>performRelease</name>
-					<value>true</value>
-				</property>
-			</activation>
-			<build>
-				<plugins>
-					<plugin>
-						<groupId>org.apache.maven.plugins</groupId>
-						<artifactId>maven-gpg-plugin</artifactId>
-						<version>1.1</version>
-						<configuration>
-							<homedir>${levigo-jbig2-imageio.gpg.homedir}</homedir>
-							<keyname>${levigo-jbig2-imageio.gpg.keyname}</keyname>
-							<passphrase>${levigo-jbig2-imageio.gpg.passphrase}</passphrase>
-						</configuration>
-						<executions>
-							<execution>
-								<id>sign-artifacts</id>
-								<phase>verify</phase>
-								<goals>
-									<goal>sign</goal>
-								</goals>
-							</execution>
-						</executions>
-					</plugin>
-				</plugins>
-			</build>
-		</profile>
-	</profiles>
-
+<!--
+
+    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</groupId>
+        <artifactId>apache</artifactId>
+        <version>18</version>
+        <relativePath/>
+    </parent>
+    
+	<groupId>org.apache.pdfbox</groupId>
+	<artifactId>jbig2-imageio</artifactId>
+	<version>3.0.0-SNAPSHOT</version>
+	
+	<name>PDFBox JBIG2 ImageIO plugin</name>
+	
+	<description>
+		Java Image I/O plugin for reading JBIG2-compressed image data. 
+		Formerly known as the levigo JBig2 ImageIO plugin (com.levigo.jbig2:levigo-jbig2-imageio).
+	</description>
+	
+    <organization>
+        <name>The Apache Software Foundation</name>
+        <url>http://pdfbox.apache.org</url>
+    </organization>
+  
+
+    <issueManagement>
+        <system>jira</system>
+        <url>https://issues.apache.org/jira/browse/PDFBOX</url>
+    </issueManagement>
+
+	<developers>
+		<developer>
+			<id>krzikams</id>
+			<name>Matthäus Mayer</name>
+			<email>m.mayer@levigo.de</email>
+			<roles>
+				<role>retired developer</role>
+			</roles>
+		</developer>
+		<developer>
+			<id>hennejg</id>
+			<name>Jörg Henne</name>
+			<email>j.henne@levigo.de</email>
+			<roles>
+				<role>project transition to ASL/ASF</role>
+			</roles>
+		</developer>
+	</developers>
+
+    <scm>
+      <connection>scm:git:http://git-wip-us.apache.org/repos/asf/pdfbox-jbig2.git</connection>
+      <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/pdfbox-jbig2.git</developerConnection>
+      <url>https://git-wip-us.apache.org/repos/asf?p=pdfbox-jbig2.git</url>
+    </scm>
+	
+	<dependencies>
+		<dependency>
+			<groupId>junit</groupId>
+			<artifactId>junit</artifactId>
+			<version>4.10</version>
+			<scope>test</scope>
+		</dependency>
+	</dependencies>
+
+	<build>
+		<plugins>
+			<plugin>
+				<artifactId>maven-compiler-plugin</artifactId>
+				<configuration>
+					<source>1.7</source>
+					<target>1.7</target>
+					<debug>false</debug>
+					<optimize>true</optimize>
+				</configuration>
+			</plugin>
+            <plugin>
+		      <artifactId>maven-release-plugin</artifactId>
+		      <configuration>
+		          <autoVersionSubmodules>true</autoVersionSubmodules>
+		          <!-- Keep changes in the local repo, push will be done afterwards -->
+		          <pushChanges>false</pushChanges>
+		          <localCheckout>true</localCheckout>
+		          <!-- Use a better name for the tag -->
+		          <tagNameFormat>${project.artifactId}-${project.version}</tagNameFormat>
+		      </configuration>
+		      <dependencies>
+		          <dependency>
+		            <groupId>org.apache.maven.scm</groupId>
+		            <artifactId>maven-scm-provider-gitexe</artifactId>
+		            <version>1.9</version>
+		          </dependency>
+		      </dependencies>
+		    </plugin>
+		</plugins>
+	</build>
+
+	<profiles>
+        <profile>
+            <id>pedantic</id>
+            <build>
+                <plugins>
+                    <plugin>
+                        <groupId>org.apache.rat</groupId>
+                        <artifactId>apache-rat-plugin</artifactId>
+                        <executions>
+                            <execution>
+                                <phase>verify</phase>
+                                <goals>
+                                    <goal>check</goal>
+                                </goals>
+                            </execution>
+                        </executions>
+                    </plugin>
+                    <plugin>
+                        <groupId>org.owasp</groupId>
+                        <artifactId>dependency-check-maven</artifactId>
+                        <version>2.1.0</version>
+                        <configuration>
+                            <failBuildOnAnyVulnerability>true</failBuildOnAnyVulnerability>
+                        </configuration>
+                        <executions>
+                            <execution>
+                                <goals>
+                                    <goal>check</goal>
+                                </goals>
+                            </execution>
+                        </executions>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+		<profile>
+			<id>release-sign-artifacts</id>
+			<activation>
+				<property>
+					<name>performRelease</name>
+					<value>true</value>
+				</property>
+			</activation>
+			<build>
+				<plugins>
+					<plugin>
+						<groupId>org.apache.maven.plugins</groupId>
+						<artifactId>maven-gpg-plugin</artifactId>
+						<version>1.1</version>
+						<configuration>
+							<homedir>${levigo-jbig2-imageio.gpg.homedir}</homedir>
+							<keyname>${levigo-jbig2-imageio.gpg.keyname}</keyname>
+							<passphrase>${levigo-jbig2-imageio.gpg.passphrase}</passphrase>
+						</configuration>
+						<executions>
+							<execution>
+								<id>sign-artifacts</id>
+								<phase>verify</phase>
+								<goals>
+									<goal>sign</goal>
+								</goals>
+							</execution>
+						</executions>
+					</plugin>
+				</plugins>
+			</build>
+		</profile>
+	</profiles>
+
 </project>
\ No newline at end of file