Compare commits
No commits in common. "ffe3860e12a42e15d16cb982bdbe636beb188479" and "7a875731f83bd9d1d6881ccd9a68f09f0e003b4b" have entirely different histories.
ffe3860e12
...
7a875731f8
5 changed files with 12 additions and 23 deletions
4
.github/settings.xml
vendored
4
.github/settings.xml
vendored
|
@ -3,12 +3,12 @@
|
|||
<servers>
|
||||
<server>
|
||||
<id>sonatype-nexus-snapshots</id>
|
||||
<username>kemitix</username>
|
||||
<username>${env.NEXUS_USERNAME}</username>
|
||||
<password>${env.NEXUS_PASSWORD}</password>
|
||||
</server>
|
||||
<server>
|
||||
<id>sonatype-nexus-staging</id>
|
||||
<username>kemitix</username>
|
||||
<username>${env.NEXUS_USERNAME}</username>
|
||||
<password>${env.NEXUS_PASSWORD}</password>
|
||||
</server>
|
||||
</servers>
|
||||
|
|
2
.github/workflows/build-maven.yml
vendored
2
.github/workflows/build-maven.yml
vendored
|
@ -11,7 +11,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
java: [ 17 ]
|
||||
java: [ 11, 15 ]
|
||||
steps:
|
||||
- uses: kamiazya/setup-graphviz@v1
|
||||
- uses: actions/checkout@v2
|
||||
|
|
3
.github/workflows/sonatype-deploy.yml
vendored
3
.github/workflows/sonatype-deploy.yml
vendored
|
@ -14,7 +14,7 @@ jobs:
|
|||
- name: Set up JDK
|
||||
uses: actions/setup-java@v1
|
||||
with:
|
||||
java-version: 17
|
||||
java-version: 11
|
||||
- name: Build with Maven
|
||||
run: mvn -B install
|
||||
- name: Nexus Repo Publish
|
||||
|
@ -34,6 +34,7 @@ jobs:
|
|||
-B \
|
||||
deploy
|
||||
env:
|
||||
NEXUS_USERNAME: ${{ secrets.NEXUS_USERNAME }}
|
||||
NEXUS_PASSWORD: ${{ secrets.NEXUS_PASSWORD }}
|
||||
GPG_KEYNAME: ${{ secrets.GPG_KEYNAME }}
|
||||
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
|
||||
|
|
14
pom.xml
14
pom.xml
|
@ -12,15 +12,15 @@
|
|||
</parent>
|
||||
|
||||
<artifactId>fontface</artifactId>
|
||||
<version>1.1.0</version>
|
||||
<version>1.0.0</version>
|
||||
|
||||
<properties>
|
||||
<tiles-maven-plugin.version>2.25</tiles-maven-plugin.version>
|
||||
<tiles-maven-plugin.version>2.20</tiles-maven-plugin.version>
|
||||
<kemitix-tiles.version>2.10.0</kemitix-tiles.version>
|
||||
<lombok.version>1.18.22</lombok.version>
|
||||
<junit-jupiter.version>5.8.2</junit-jupiter.version>
|
||||
<mockito-junit-jupiter.version>4.2.0</mockito-junit-jupiter.version>
|
||||
<assertj-core.version>3.21.0</assertj-core.version>
|
||||
<lombok.version>1.18.20</lombok.version>
|
||||
<junit-jupiter.version>5.7.1</junit-jupiter.version>
|
||||
<mockito-junit-jupiter.version>3.8.0</mockito-junit-jupiter.version>
|
||||
<assertj-core.version>3.19.0</assertj-core.version>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
|
@ -72,4 +72,4 @@
|
|||
</plugins>
|
||||
</build>
|
||||
|
||||
</project>
|
||||
</project>
|
|
@ -17,18 +17,6 @@ public class FontFace {
|
|||
private int shadowOffsetX;
|
||||
private int shadowOffsetY;
|
||||
|
||||
public static FontFace of(
|
||||
URI fontUri,
|
||||
int size,
|
||||
String colour,
|
||||
String shadowColour,
|
||||
int shadowOffsetX,
|
||||
int shadowOffsetY
|
||||
) {
|
||||
return new FontFace(fontUri, size, colour,
|
||||
shadowColour, shadowOffsetX, shadowOffsetY);
|
||||
}
|
||||
|
||||
public static FontFace of(
|
||||
URI fontUri,
|
||||
int size,
|
||||
|
|
Loading…
Reference in a new issue