forked from larrychristensen/orcpub
-
-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #543 from datdamnzotz/#542_green_dragon_breath_fix
Fix Poison Breath Description on Young Green Dragon
- Loading branch information
Showing
35 changed files
with
10,407 additions
and
9,749 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ on: [pull_request] | |
|
||
jobs: | ||
lint: | ||
name: Lint | ||
name: Run Linter and Tests | ||
runs-on: ubuntu-18.04 | ||
steps: | ||
- name: Checkout | ||
|
@@ -13,6 +13,10 @@ jobs: | |
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 8.0.292 | ||
- name: Load pdfbox from /lib | ||
run: mkdir ~/.m2/repository/ && mkdir ~/.m2/repository/org/ && cp -rv ./lib/* ~/.m2/repository | ||
- name: ls .m2 | ||
run: ls -la ~/.m2/repository/org/ | ||
- name: Install clojure tools | ||
uses: DeLaGuardo/[email protected] | ||
with: | ||
|
@@ -24,11 +28,5 @@ jobs: | |
run: lein -v | ||
- name: Run linter | ||
run: lein lint | ||
build-and-test: | ||
name: Build and Test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Run tests | ||
run: lein test | ||
run: lein test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ FROM clojure:openjdk-8-lein as builder | |
MAINTAINER [email protected] | ||
|
||
# Build cache layer | ||
ADD ./lib/ /root/.m2/repository/ | ||
WORKDIR /orcpub | ||
COPY project.clj /orcpub/ | ||
RUN lein deps | ||
|
6 changes: 6 additions & 0 deletions
6
lib/org/apache/pdfbox/fontbox/2.1.0-SNAPSHOT/_remote.repositories
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. | ||
#Tue Jan 29 13:44:11 MST 2019 | ||
fontbox-2.1.0-20170324.165924-846.jar>apache= | ||
fontbox-2.1.0-20170324.165924-846.pom>= | ||
fontbox-2.1.0-20170324.165924-846.jar>= | ||
fontbox-2.1.0-20170324.165924-846.pom>apache= |
Binary file added
BIN
+1.41 MB
lib/org/apache/pdfbox/fontbox/2.1.0-SNAPSHOT/fontbox-2.1.0-20170324.165924-846.jar
Binary file not shown.
1 change: 1 addition & 0 deletions
1
lib/org/apache/pdfbox/fontbox/2.1.0-SNAPSHOT/fontbox-2.1.0-20170324.165924-846.jar.sha1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
5578ca82a5bf8f05ec109280748be69783486628 |
71 changes: 71 additions & 0 deletions
71
lib/org/apache/pdfbox/fontbox/2.1.0-SNAPSHOT/fontbox-2.1.0-20170324.165924-846.pom
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
<?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 http://maven.apache.org/maven-v4_0_0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>org.apache.pdfbox</groupId> | ||
<artifactId>pdfbox-parent</artifactId> | ||
<version>2.1.0-SNAPSHOT</version> | ||
<relativePath>../parent/pom.xml</relativePath> | ||
</parent> | ||
|
||
<artifactId>fontbox</artifactId> | ||
<packaging>bundle</packaging> | ||
|
||
<name>Apache FontBox</name> | ||
<description> | ||
The Apache FontBox library is an open source Java tool to obtain low level information | ||
from font files. FontBox is a subproject of Apache PDFBox. | ||
</description> | ||
|
||
<inceptionYear>2008</inceptionYear> | ||
<url>http://pdfbox.apache.org/</url> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>commons-logging</groupId> | ||
<artifactId>commons-logging</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.felix</groupId> | ||
<artifactId>maven-bundle-plugin</artifactId> | ||
<extensions>true</extensions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.rat</groupId> | ||
<artifactId>apache-rat-plugin</artifactId> | ||
<configuration> | ||
<excludes> | ||
<exclude>src/main/resources/org/apache/fontbox/cmap/*</exclude> | ||
</excludes> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
</project> | ||
|
1 change: 1 addition & 0 deletions
1
lib/org/apache/pdfbox/fontbox/2.1.0-SNAPSHOT/fontbox-2.1.0-20170324.165924-846.pom.sha1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
40456f8a00684c3fecc8d327597ee355e909630b |
Binary file added
BIN
+1.41 MB
lib/org/apache/pdfbox/fontbox/2.1.0-SNAPSHOT/fontbox-2.1.0-SNAPSHOT.jar
Binary file not shown.
71 changes: 71 additions & 0 deletions
71
lib/org/apache/pdfbox/fontbox/2.1.0-SNAPSHOT/fontbox-2.1.0-SNAPSHOT.pom
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
<?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 http://maven.apache.org/maven-v4_0_0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>org.apache.pdfbox</groupId> | ||
<artifactId>pdfbox-parent</artifactId> | ||
<version>2.1.0-SNAPSHOT</version> | ||
<relativePath>../parent/pom.xml</relativePath> | ||
</parent> | ||
|
||
<artifactId>fontbox</artifactId> | ||
<packaging>bundle</packaging> | ||
|
||
<name>Apache FontBox</name> | ||
<description> | ||
The Apache FontBox library is an open source Java tool to obtain low level information | ||
from font files. FontBox is a subproject of Apache PDFBox. | ||
</description> | ||
|
||
<inceptionYear>2008</inceptionYear> | ||
<url>http://pdfbox.apache.org/</url> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>commons-logging</groupId> | ||
<artifactId>commons-logging</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.felix</groupId> | ||
<artifactId>maven-bundle-plugin</artifactId> | ||
<extensions>true</extensions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.rat</groupId> | ||
<artifactId>apache-rat-plugin</artifactId> | ||
<configuration> | ||
<excludes> | ||
<exclude>src/main/resources/org/apache/fontbox/cmap/*</exclude> | ||
</excludes> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
</project> | ||
|
1 change: 1 addition & 0 deletions
1
lib/org/apache/pdfbox/fontbox/2.1.0-SNAPSHOT/maven-metadata-.xml.sha1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
dbfd29b44094c4536436c16288d928966d6af89c |
1 change: 1 addition & 0 deletions
1
lib/org/apache/pdfbox/fontbox/2.1.0-SNAPSHOT/maven-metadata-apache.snapshots.xml.sha1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
dbfd29b44094c4536436c16288d928966d6af89c |
31 changes: 31 additions & 0 deletions
31
lib/org/apache/pdfbox/fontbox/2.1.0-SNAPSHOT/maven-metadata-apache.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<metadata modelVersion="1.1.0"> | ||
<groupId>org.apache.pdfbox</groupId> | ||
<artifactId>fontbox</artifactId> | ||
<version>2.1.0-SNAPSHOT</version> | ||
<versioning> | ||
<snapshot> | ||
<timestamp>20170324.165924</timestamp> | ||
<buildNumber>846</buildNumber> | ||
</snapshot> | ||
<lastUpdated>20170325065546</lastUpdated> | ||
<snapshotVersions> | ||
<snapshotVersion> | ||
<classifier>sources</classifier> | ||
<extension>jar</extension> | ||
<value>2.1.0-20170324.165924-846</value> | ||
<updated>20170324165924</updated> | ||
</snapshotVersion> | ||
<snapshotVersion> | ||
<extension>jar</extension> | ||
<value>2.1.0-20170324.165924-846</value> | ||
<updated>20170324165924</updated> | ||
</snapshotVersion> | ||
<snapshotVersion> | ||
<extension>pom</extension> | ||
<value>2.1.0-20170324.165924-846</value> | ||
<updated>20170324165924</updated> | ||
</snapshotVersion> | ||
</snapshotVersions> | ||
</versioning> | ||
</metadata> |
1 change: 1 addition & 0 deletions
1
lib/org/apache/pdfbox/fontbox/2.1.0-SNAPSHOT/maven-metadata-apache.xml.sha1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
dbfd29b44094c4536436c16288d928966d6af89c |
11 changes: 11 additions & 0 deletions
11
lib/org/apache/pdfbox/fontbox/2.1.0-SNAPSHOT/resolver-status.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. | ||
#Mon Nov 15 12:10:30 CST 2021 | ||
maven-metadata-apache.snapshots.xml.error= | ||
maven-metadata-.xml.error= | ||
maven-metadata-clojars.xml.error= | ||
maven-metadata-my.datomic.com.xml.error=Could not transfer metadata org.apache.pdfbox\:fontbox\:2.1.0-SNAPSHOT/maven-metadata.xml from/to my.datomic.com (https\://my.datomic.com/repo)\: Not authorized , ReasonPhrase\:Unauthorized. | ||
maven-metadata-my.datomic.com.xml/@default-my.datomic.com-https\://my.datomic.com/repo/.lastUpdated=1636999830024 | ||
maven-metadata-apache.xml.lastUpdated=1583301979070 | ||
maven-metadata-clojars.xml.lastUpdated=1636999829901 | ||
maven-metadata-.xml.lastUpdated=1636999830390 | ||
maven-metadata-apache.snapshots.xml.lastUpdated=1636999830128 |
4 changes: 4 additions & 0 deletions
4
lib/org/apache/pdfbox/pdfbox-parent/2.1.0-SNAPSHOT/_remote.repositories
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. | ||
#Tue Jan 29 13:44:05 MST 2019 | ||
pdfbox-parent-2.1.0-20170324.165845-499.pom>apache= | ||
pdfbox-parent-2.1.0-20170324.165845-499.pom>= |
1 change: 1 addition & 0 deletions
1
lib/org/apache/pdfbox/pdfbox-parent/2.1.0-SNAPSHOT/maven-metadata-.xml.sha1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
2c81d996339b62d06424c3b5813fa6825307ca77 |
1 change: 1 addition & 0 deletions
1
lib/org/apache/pdfbox/pdfbox-parent/2.1.0-SNAPSHOT/maven-metadata-apache.snapshots.xml.sha1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
2c81d996339b62d06424c3b5813fa6825307ca77 |
20 changes: 20 additions & 0 deletions
20
lib/org/apache/pdfbox/pdfbox-parent/2.1.0-SNAPSHOT/maven-metadata-apache.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<metadata modelVersion="1.1.0"> | ||
<groupId>org.apache.pdfbox</groupId> | ||
<artifactId>pdfbox-parent</artifactId> | ||
<version>2.1.0-SNAPSHOT</version> | ||
<versioning> | ||
<snapshot> | ||
<timestamp>20170324.165845</timestamp> | ||
<buildNumber>499</buildNumber> | ||
</snapshot> | ||
<lastUpdated>20170324165845</lastUpdated> | ||
<snapshotVersions> | ||
<snapshotVersion> | ||
<extension>pom</extension> | ||
<value>2.1.0-20170324.165845-499</value> | ||
<updated>20170324165845</updated> | ||
</snapshotVersion> | ||
</snapshotVersions> | ||
</versioning> | ||
</metadata> |
1 change: 1 addition & 0 deletions
1
lib/org/apache/pdfbox/pdfbox-parent/2.1.0-SNAPSHOT/maven-metadata-apache.xml.sha1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
2c81d996339b62d06424c3b5813fa6825307ca77 |
Oops, something went wrong.