Skip to content

Commit

Permalink
Merge pull request #543 from datdamnzotz/#542_green_dragon_breath_fix
Browse files Browse the repository at this point in the history
Fix Poison Breath Description on Young Green Dragon
  • Loading branch information
codeGlaze authored Jan 16, 2022
2 parents 86f2f89 + c824350 commit 5506ba1
Show file tree
Hide file tree
Showing 35 changed files with 10,407 additions and 9,749 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [pull_request]

jobs:
lint:
name: Lint
name: Run Linter and Tests
runs-on: ubuntu-18.04
steps:
- name: Checkout
Expand All @@ -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:
Expand All @@ -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
1 change: 1 addition & 0 deletions docker/orcpub/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
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 not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
5578ca82a5bf8f05ec109280748be69783486628
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>

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
40456f8a00684c3fecc8d327597ee355e909630b
Binary file not shown.
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>

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
dbfd29b44094c4536436c16288d928966d6af89c
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
dbfd29b44094c4536436c16288d928966d6af89c
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>
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
dbfd29b44094c4536436c16288d928966d6af89c
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
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>=
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2c81d996339b62d06424c3b5813fa6825307ca77
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2c81d996339b62d06424c3b5813fa6825307ca77
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>
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2c81d996339b62d06424c3b5813fa6825307ca77
Loading

0 comments on commit 5506ba1

Please sign in to comment.