Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
gpg-passphrase: PASSPHRASE

- name: "Maven deploy maven central"
run: mvn deploy --batch-mode -D skipTests --activate-profiles central --no-transfer-progress
run: mvn deploy --batch-mode -DskipTests --activate-profiles central --no-transfer-progress
env:
MAVEN_USERNAME: ${{secrets.MAVEN_TOKEN_USER}}
MAVEN_TOKEN: ${{secrets.MAVEN_TOKEN}}
Expand All @@ -53,7 +53,7 @@ jobs:
distribution: "corretto"

- name: "Maven deploy github packages"
run: mvn deploy --batch-mode -D skipTests --activate-profiles github --no-transfer-progress
run: mvn deploy --batch-mode -DskipTests --activate-profiles github --no-transfer-progress
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down
25 changes: 0 additions & 25 deletions CHANGELOG.md

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
### A pure Java interface to the Scanii content processing service - https://scanii.com
### A pure Java interface to the Scanii content processing service - https://www.scanii.com

### How to use this client

Expand Down
19 changes: 10 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -133,25 +133,30 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<version>3.3.0</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.5.0</version>
<version>3.6.3</version>
<configuration>
<failOnError>false</failOnError>
<source>11</source>
<additionalJOptions>
<additionalJOption>-Xdoclint:none</additionalJOption>
</additionalJOptions>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
Expand All @@ -171,10 +176,6 @@
</goals>
</execution>
</executions>
<configuration>
<passphrase/> <!-- explicitly empty -->
<useAgent>false</useAgent> <!-- ensure no gpg-agent interference -->
</configuration>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
Expand Down
Loading